This commit is contained in:
2026-06-23 15:25:17 -07:00
commit 94b1c71b1e
32 changed files with 4504 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# Add your reusable home-manager modules to this directory, on their own file (https://nixos.wiki/wiki/Module).
# These should be stuff you would like to share with others, not your personal configurations.
{
# List your module files here
# my-module = import ./my-module.nix;
}
@@ -0,0 +1,14 @@
# For Home Manager: spicetify-nix.homeManagerModules.spicetify
{ pkgs, inputs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in {
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}