From 13d01da571a67cb902611403b0b83b332a1aa313 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 29 Jul 2021 12:24:01 +0200 Subject: [PATCH] home: alacritty: enable by default --- home/alacritty.nix | 2 +- hosts/boreal/home.nix | 1 - hosts/zephyrus/home.nix | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) 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;