Configure nemo in separate file
This commit is contained in:
parent
caa0ae4fe2
commit
f173a43c72
|
@ -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
|
||||
|
|
|
@ -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
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";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -37,7 +37,6 @@
|
|||
inkscape
|
||||
kdePackages.kleopatra # Gpg GUI
|
||||
lazygit
|
||||
nemo-with-extensions # file manager
|
||||
jq
|
||||
nitch # systhem fetch util
|
||||
nix-prefetch-github
|
||||
|
|
Loading…
Reference in a new issue