Configure nemo in separate file
This commit is contained in:
parent
caa0ae4fe2
commit
f173a43c72
4 changed files with 14 additions and 7 deletions
13
modules/home/nemo.nix
Normal file
13
modules/home/nemo.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue