frues-clan/users/pedro/home-configuration/nemo.nix
Pedro Rey Anca 7606f9e051
Some checks failed
Update `flake.lock` / update_lockfile (push) Waiting to run
Flake check / check (push) Has been cancelled
Migrate config (frues-pc machine for now) from https://git.peprolinbot.com/peprolinbot/nixos-config, with improvements
2025-09-08 18:59:28 +02:00

13 lines
324 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [nemo-with-extensions];
xdg.mimeApps.defaultApplications = {
"inode/directory" = ["nemo.desktop"];
"application/x-gnome-saved-search" = ["nemo.desktop"];
};
dconf.settings = {
"org/cinnamon/desktop/applications/terminal" = {
exec = "kitty";
};
};
}