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

View file

@ -20,6 +20,7 @@
++ [(import ./kdeconnect.nix)]
++ [(import ./kitty.nix)] # terminal
++ [(import ./swaync)] # notification deamon
++ [(import ./nemo.nix)] # File manager
++ [(import ./nextcloud.nix)] # nextcloud client
++ [(import ./nvim.nix)] # neovim editor
++ [(import ./packages.nix)] # other packages

View file

@ -1,10 +1,4 @@
{pkgs, ...}: {
dconf.settings = {
"org/cinnamon/desktop/applications/terminal" = {
exec = "kitty";
};
};
programs.kitty = {
enable = true;

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";
};
};
}

View file

@ -37,7 +37,6 @@
inkscape
kdePackages.kleopatra # Gpg GUI
lazygit
nemo-with-extensions # file manager
jq
nitch # systhem fetch util
nix-prefetch-github