From 9645914e1021c501845fa2739c1d66e7bddd4559 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Sat, 29 Nov 2025 10:59:29 -0500 Subject: [PATCH] removed themes --- dot_config/flake/home/fish.nix | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/dot_config/flake/home/fish.nix b/dot_config/flake/home/fish.nix index a2f7f7a..9d66306 100644 --- a/dot_config/flake/home/fish.nix +++ b/dot_config/flake/home/fish.nix @@ -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"; }