update fish prompt

This commit is contained in:
Sean Kovacs 2026-01-06 12:50:26 -05:00
commit a23aa285d9
Signed by: sckova
GPG key ID: 00F325187C68651A
3 changed files with 28 additions and 11 deletions

View file

@ -1,6 +1,7 @@
{
config,
pkgs,
lib,
...
}: {
home.packages = with pkgs; [kdePackages.qttools];
@ -29,4 +30,15 @@
};
};
};
home.file.".config/fish/colors.fish" = {
text = let
flavor = config.catppuccin.flavor;
palette = pkgs.catppuccin.bare.${flavor};
in
lib.concatStringsSep "\n" (
lib.mapAttrsToList (name: value: "set -g color_${name} ${value}") palette
);
force = true;
};
}