diff options
| -rw-r--r-- | roles/home/desktop/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/roles/home/desktop/default.nix b/roles/home/desktop/default.nix index 1735a9b..39ace99 100644 --- a/roles/home/desktop/default.nix +++ b/roles/home/desktop/default.nix @@ -27,32 +27,32 @@ let cfg = config.home.roles.desktop; in { discord = mkOption { type = types.bool; - default = true; + default = cfg.enable; }; eww = mkOption { type = types.bool; - default = true; + default = cfg.enable; }; mpv = mkOption { type = types.bool; - default = true; + default = cfg.enable; }; screenshot = mkOption { type = types.bool; - default = true; + default = cfg.enable; }; fetch = mkOption { type = types.bool; - default = true; + default = cfg.enable; }; music = mkOption { type = types.bool; - default = true; + default = cfg.enable; }; }; |