diff --git a/home/alacritty.nix b/home/alacritty.nix index a269a61..44f08cb 100644 --- a/home/alacritty.nix +++ b/home/alacritty.nix @@ -4,7 +4,7 @@ let alacrittyTheme = config.my.theme.alacrittyTheme; in { - options.my.home.alacritty.enable = lib.mkEnableOption "Alacritty terminal"; + options.my.home.alacritty.enable = (lib.mkEnableOption "Alacritty terminal") // { default = config.my.home.x.enable; }; config = lib.mkIf cfg.enable { programs.alacritty = { diff --git a/hosts/boreal/home.nix b/hosts/boreal/home.nix index 68ef790..0b2e791 100644 --- a/hosts/boreal/home.nix +++ b/hosts/boreal/home.nix @@ -5,7 +5,6 @@ my.home.x.enable = true; my.home.x.i3bar.temperature.chip = "k10temp-pci-*"; my.home.x.i3bar.temperature.inputs = [ "Tccd1" ]; - my.home.alacritty.enable = true; my.home.emacs.enable = true; my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight; diff --git a/hosts/zephyrus/home.nix b/hosts/zephyrus/home.nix index 0af58ba..648788d 100644 --- a/hosts/zephyrus/home.nix +++ b/hosts/zephyrus/home.nix @@ -7,7 +7,6 @@ my.home.x.enable = true; my.home.x.i3bar.temperature.chip = "coretemp-isa-*"; my.home.x.i3bar.temperature.inputs = ["Core 0" "Core 1" "Core 2" "Core 3"]; - my.home.alacritty.enable = true; my.home.emacs.enable = true; my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;