diff options
Diffstat (limited to 'nix/modules/home/kitty.nix')
-rw-r--r-- | nix/modules/home/kitty.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/modules/home/kitty.nix b/nix/modules/home/kitty.nix index 973581a..b99736e 100644 --- a/nix/modules/home/kitty.nix +++ b/nix/modules/home/kitty.nix @@ -1,7 +1,7 @@ { lib, config, ... }: { programs.kitty = { - enable = lib.mkDefault config.monorepo.profiles.hyprland.enable; + enable = lib.mkDefault (config.monorepo.profiles.hyprland.enable && config.monorepo.profiles.graphics.enable); settings = { enable_audio_bell = false; font_family = "Iosevka Nerd Font"; |