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;
   };