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;
|
||||
};
|
||||
apps = {
|
||||
nemo.enable = true;
|
||||
keepassxc.enable = true;
|
||||
kdeconnect.enable = true;
|
||||
nicotineplus.enable = true;
|
||||
|
|
|
@ -3,5 +3,6 @@
|
|||
./keepassxc
|
||||
./nicotineplus
|
||||
./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