diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-26 11:54:36 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-26 11:54:36 -0700 |
| commit | a48baa41735494d568962c9628cbc4d67bd185af (patch) | |
| tree | 1d7101da4602d46c20dfce123da6247343ad32d0 /roles/home/desktop/default.nix | |
| parent | 9709efe25190502a92d1dc4684d3b642b94ea262 (diff) | |
home: desktop: create cmus config
Diffstat (limited to 'roles/home/desktop/default.nix')
| -rw-r--r-- | roles/home/desktop/default.nix | 10 |
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 { |