Moved common home-manager config to shared/home-manager

This commit is contained in:
2025-04-12 23:29:10 +02:00
parent 0649473709
commit a0537f5634
72 changed files with 104 additions and 6716 deletions

View File

@ -0,0 +1,35 @@
{
pkgs,
inputs,
lib,
theme,
...
}:
{
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
fullAppDisplay
hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
];
enabledCustomApps = with spicePkgs.apps; [
newReleases
ncsVisualizer
];
enabledSnippets = with spicePkgs.snippets; [
pointer
];
theme = lib.mkForce spicePkgs.themes.catppuccin;
colorScheme = lib.mkForce theme.flavor;
};
}