From e80af53fd8352a940f1ffdcb6be4ada2a3883aab Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Thu, 2 Dec 2021 19:57:32 +0200 Subject: [PATCH] feat: upgraded alacritty theme --- flake.nix | 11 +++++++++-- modules/applications/alacritty.nix | 3 ++- modules/applications/shells/fish.nix | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 6a90851..10ad44c 100644 --- a/flake.nix +++ b/flake.nix @@ -38,8 +38,15 @@ import easy-purescript-nix { inherit pkgs; }; easy-dhall-nix = import easy-dhall-nix { inherit pkgs; }; - fishPlugins.z = z; - fishThemes.agnoster = agnoster; + z = { + src = z; + name = "z"; + }; + + agnoster = { + src = agnoster; + name = "agnoster"; + }; }) ]; }) diff --git a/modules/applications/alacritty.nix b/modules/applications/alacritty.nix index 6c8390e..42b1e6f 100644 --- a/modules/applications/alacritty.nix +++ b/modules/applications/alacritty.nix @@ -45,7 +45,8 @@ bright = { black = "#5e105c"; red = "#ec9ded"; - green = "#b726d4"; + green = "#2ec0f9"; + # green = "#b726d4"; yellow = "#fff773"; blue = "#75d5fa"; magenta = "#ffb3d7"; diff --git a/modules/applications/shells/fish.nix b/modules/applications/shells/fish.nix index 1a98f08..882e5df 100644 --- a/modules/applications/shells/fish.nix +++ b/modules/applications/shells/fish.nix @@ -6,7 +6,7 @@ in { home-manager.users.adrielus.programs.fish = { inherit shellAliases; shellInit = common.shellInit; - plugins = [ fishPlugins.z fishThemes.agnoster ]; + plugins = with pkgs; [ z agnoster ]; enable = true; };