add nemo
This commit is contained in:
parent
ebf349fd7d
commit
7edc9f90b5
3 changed files with 18 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
};
|
};
|
||||||
apps = {
|
apps = {
|
||||||
|
nemo.enable = true;
|
||||||
keepassxc.enable = true;
|
keepassxc.enable = true;
|
||||||
kdeconnect.enable = true;
|
kdeconnect.enable = true;
|
||||||
nicotineplus.enable = true;
|
nicotineplus.enable = true;
|
||||||
|
|
|
@ -3,5 +3,6 @@
|
||||||
./keepassxc
|
./keepassxc
|
||||||
./nicotineplus
|
./nicotineplus
|
||||||
./kdeconnect
|
./kdeconnect
|
||||||
|
./nemo
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/desktop/apps/nemo/default.nix
Normal file
16
modules/desktop/apps/nemo/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.apps.nemo;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.apps.nemo = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
cinnamon.nemo
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue