Fix fish nix function recurse error

This commit is contained in:
2026-07-08 08:15:50 +01:00
parent 32b5474307
commit 3aa23d4ce1
4 changed files with 80 additions and 6 deletions
+17 -1
View File
@@ -1,7 +1,11 @@
{ pkgs, ... }:
{ inputs, pkgs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in
{
imports = [
inputs.spicetify-nix.homeManagerModules.spicetify
./battery
./btop
./dunst
@@ -17,6 +21,8 @@
./yazi
];
nixpkgs.config.allowUnfree = true;
home.username = "me";
home.homeDirectory = "/home/me";
@@ -47,5 +53,15 @@
fi
'';
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblockify
hidePodcasts
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
home.stateVersion = "26.05";
}