From a48baa41735494d568962c9628cbc4d67bd185af Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 26 Jul 2024 11:54:36 -0700 Subject: home: desktop: create cmus config --- roles/home/desktop/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'roles/home/desktop/default.nix') 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 { -- cgit v1.2.3