From 4e325d70dbd783526f76491e5bbba40fcd6edd5b Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 9 Apr 2022 12:22:55 -0700 Subject: delete configuration related to colors Setting colors is hard, and it's an easy way to waste time. The only color settings I keep are the ones related to waybar, to make sure it does not look like a Christmas tree. Which means that most applications are going to use their default theme, and I'm OK with that. --- home/terminal/alacritty/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'home/terminal/alacritty/default.nix') diff --git a/home/terminal/alacritty/default.nix b/home/terminal/alacritty/default.nix index 00e9ca4..72a6d33 100644 --- a/home/terminal/alacritty/default.nix +++ b/home/terminal/alacritty/default.nix @@ -1,7 +1,5 @@ { config, lib, pkgs, ... }: -let - cfg = config.my.home.terminal; - colors = import ./theme.nix; +let cfg = config.my.home.terminal; in { config = lib.mkIf (cfg.program == "alacritty") { programs.alacritty = { @@ -17,7 +15,7 @@ in { style.blinking = "Never"; unfocused_hollow = true; }; - } // colors; + }; }; }; } -- cgit v1.2.3