14 lines
194 B
Nix
14 lines
194 B
Nix
{
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.spicetify-nix.homeManagerModules.spicetify
|
|
];
|
|
programs.spicetify = {
|
|
enable = true;
|
|
# TODO: Add theme config
|
|
#theme = { };
|
|
};
|
|
}
|