Fish theme

This commit is contained in:
Tyler Mayoff 2025-02-21 21:45:16 -05:00
parent 03b3066880
commit 7365048cc9

View file

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