removed themes

This commit is contained in:
Tyler Mayoff 2025-11-29 10:59:29 -05:00 committed by Tyle Mayoff
parent 0c0d5e398c
commit 9645914e10

View file

@ -1,18 +1,4 @@
{pkgs, ...}: let
catppuccin-fish = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "fish";
rev = "6a85af2ff722ad0f9fbc8424ea0a5c454661dfed";
hash = "sha256-Oc0emnIUI4LV7QJLs4B2/FQtCFewRFVp7EDv8GawFsA=";
};
rose-pine = pkgs.fetchFromGitHub {
owner = "rose-pine";
repo = "fish";
rev = "main";
hash = "sha256-Dvaw1k7XOU2NUQbTJAXPgAOPN1zTLVrc7NZDY5/KHeM=";
};
in {
{pkgs, ...}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
@ -50,12 +36,4 @@ in {
}
];
};
xdg.configFile."fish/themes/Catppuccin Latte.theme".source = "${catppuccin-fish}/themes/Catppuccin Latte.theme";
xdg.configFile."fish/themes/Catppuccin Macchiato.theme".source = "${catppuccin-fish}/themes/Catppuccin Macchiato.theme";
xdg.configFile."fish/themes/Rosé Pine.theme".source = "${rose-pine}/themes/Rosé Pine.theme";
xdg.configFile."fish/themes/Rosé Pine Dawn.theme".source = "${rose-pine}/themes/Rosé Pine Dawn.theme";
}