mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
15 lines
183 B
Nix
15 lines
183 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ripgrep
|
|
fd
|
|
zoxide
|
|
ffmpegthumbnailer
|
|
poppler_utils
|
|
];
|
|
programs.yazi = {
|
|
enable = true;
|
|
};
|
|
}
|