18 lines
322 B
Nix
18 lines
322 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
spicePkgs =
|
|
inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in {
|
|
imports = [
|
|
inputs.spicetify-nix.homeManagerModules.default
|
|
];
|
|
|
|
programs.spicetify = {
|
|
enable = true;
|
|
theme = spicePkgs.themes.ziro;
|
|
colorScheme = "rose-pine-moon";
|
|
};
|
|
}
|