Configure nemo in separate file

This commit is contained in:
Pedro Rey Anca 2025-06-09 12:01:18 +02:00
parent caa0ae4fe2
commit f173a43c72
Signed by: peprolinbot
GPG key ID: 053EA6E00116533A
4 changed files with 14 additions and 7 deletions

13
modules/home/nemo.nix Normal file
View file

@ -0,0 +1,13 @@
{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";
};
};
}