diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-28 12:09:11 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-28 12:09:11 -0700 |
| commit | be018429ade451f4adb50a5a9cc8068b5a9d2e10 (patch) | |
| tree | 47482383daa5faafd40fa190d739ea0cecc3ec48 | |
| parent | ad472d6256c6f6d1670bdef84c5ac4f485d38c9e (diff) | |
home: desktop: fix default values
| -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; }; }; |