This commit is contained in:
Sakooooo 2023-07-15 17:17:31 +03:00
parent ebf349fd7d
commit 7edc9f90b5
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 18 additions and 0 deletions

View file

@ -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;

View file

@ -3,5 +3,6 @@
./keepassxc ./keepassxc
./nicotineplus ./nicotineplus
./kdeconnect ./kdeconnect
./nemo
]; ];
} }

View 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
];
};
}