aboutsummaryrefslogtreecommitdiff
path: root/roles/home/desktop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'roles/home/desktop/default.nix')
-rw-r--r--roles/home/desktop/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/roles/home/desktop/default.nix b/roles/home/desktop/default.nix
index 7f37b1c..83656c8 100644
--- a/roles/home/desktop/default.nix
+++ b/roles/home/desktop/default.nix
@@ -19,6 +19,7 @@ let cfg = config.home.roles.desktop; in {
./mpv.nix
./flameshot.nix
./fastfetch.nix
+ ./cmus.nix
];
options.home.roles.desktop = {
@@ -28,22 +29,31 @@ let cfg = config.home.roles.desktop; in {
type = types.bool;
default = true;
};
+
eww = mkOption {
type = types.bool;
default = true;
};
+
mpv = mkOption {
type = types.bool;
default = true;
};
+
screenshot = mkOption {
type = types.bool;
default = true;
};
+
fetch = mkOption {
type = types.bool;
default = true;
};
+
+ music = mkOption {
+ type = types.bool;
+ default = true;
+ };
};
config = mkIf cfg.enable {