diff --git a/dot_config/flake/home/fish.nix b/dot_config/flake/home/fish.nix index d8d837a..05e42ab 100644 --- a/dot_config/flake/home/fish.nix +++ b/dot_config/flake/home/fish.nix @@ -1,4 +1,11 @@ -{pkgs, ...}: { +{pkgs, ...}: let + catppuccin-fish = pkgs.fetchFromGitHub { + owner = "catppuccin"; + repo = "fish"; + rev = "0ce27b518e8ead555dec34dd8be3df5bd75cff8e"; + hash = "sha256-Dc/zdxfzAUM5NX8PxzfljRbYvO9f9syuLO8yBr+R3qg="; + }; +in { programs.fish = { enable = true; interactiveShellInit = '' @@ -40,4 +47,6 @@ } ]; }; + + xdg.configFile."fish/themes/Catppuccin Macchiato.theme".source = "${catppuccin-fish}/themes/Catppuccin Macchiato.theme"; }