summaryrefslogtreecommitdiff
path: root/users/seth/shell/fish.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-10 21:03:13 -0400
committerseth <[email protected]>2024-05-10 21:30:32 -0400
commit1ec692c24c5b3345e6d7fe1445f2a51b1e322f03 (patch)
tree4ee89705818476283d5759ebbed19aa4a8327cda /users/seth/shell/fish.nix
parenteb14eca101346dc5acf005060b07efd33c484556 (diff)
seth: use global catppuccin.enable
Diffstat (limited to 'users/seth/shell/fish.nix')
-rw-r--r--users/seth/shell/fish.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/users/seth/shell/fish.nix b/users/seth/shell/fish.nix
index 0b37273..b20eb40 100644
--- a/users/seth/shell/fish.nix
+++ b/users/seth/shell/fish.nix
@@ -15,7 +15,6 @@ in {
programs.fish = lib.mkMerge [
{
enable = true;
- catppuccin.enable = true;
interactiveShellInit = ''
set -l nixfile ${config.home.homeDirectory}/.nix-profile/etc/profile.d/nix.fish
@@ -39,7 +38,7 @@ in {
(lib.mkIf cfg.withPlugins {
plugins = let
- mkFishPlugins = builtins.map (plugin: {
+ mkFishPlugins = map (plugin: {
name = plugin;
inherit (pkgs.fishPlugins.${plugin}) src;
});