configuration.nix/home/programs/files.nix

19 lines
303 B
Nix
Raw Normal View History

2024-05-12 23:02:44 +05:30
_: {
2023-04-08 18:32:45 +05:30
dconf.settings = {
2023-04-08 18:46:46 +05:30
"org/gtk/gtk4/settings/file-chooser" = {
sort-directories-first = true;
};
2023-04-08 18:32:45 +05:30
};
2024-05-11 11:47:02 +05:30
programs = {
fd = {
enable = true;
ignores = [ ".git/" "node_modules/" ];
};
yazi = {
enable = true;
enableZshIntegration = true;
};
2024-05-11 11:42:55 +05:30
};
2024-05-11 11:47:02 +05:30
2023-04-08 18:32:45 +05:30
}