fish: Add catppuccin theme

This commit is contained in:
Erwin Boskma 2024-04-12 08:45:05 +02:00
parent 8358aecb87
commit ac7c2145b6
Signed by: erwin
SSH key fingerprint: SHA256:3F6Cm6I3erRqlBwEghZWAQl6eS5WrGTX1Vs/Evec1lQ

View file

@ -7,6 +7,13 @@
with lib;
let
cfg = config.eboskma.programs.fish;
catppuccin = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "fish";
rev = "0ce27b518e8ead555dec34dd8be3df5bd75cff8e";
hash = "sha256-Dc/zdxfzAUM5NX8PxzfljRbYvO9f9syuLO8yBr+R3qg=";
};
in
{
options.eboskma.programs.fish = {
@ -68,5 +75,7 @@ in
enableFishIntegration = true;
};
};
xdg.configFile."fish/themes/Catppuccin Mocha.theme".source = "${catppuccin}/themes/Catppuccin Mocha.theme";
};
}