nixos/modules/desktop/apps/nemo/default.nix

17 lines
295 B
Nix
Raw Normal View History

2023-07-15 18:17:31 +04:00
{ 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
];
};
}