From 7365048cc9dbc089fdd715e002ade2ac5dd41d32 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Fri, 21 Feb 2025 21:45:16 -0500 Subject: [PATCH] Fish theme --- dot_config/flake/home/fish.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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"; }