System Gen155 @ 2026-06-13-00:02:29 by jonas@monolith
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{
|
||||
inputs,
|
||||
self,
|
||||
...
|
||||
}: {
|
||||
flake.overlays.spicetify = final: prev: {
|
||||
spicetifyPkgs = inputs.spicetify-nix.legacyPackages.${final.stdenv.hostPlatform.system};
|
||||
};
|
||||
|
||||
flake.nixosModules.spicetify-overlay = {
|
||||
nixpkgs.overlays = [
|
||||
self.overlays.spicetify
|
||||
];
|
||||
};
|
||||
|
||||
flake.nixosModules.spicetify = {pkgs, ...}: {
|
||||
imports = [
|
||||
self.nixosModules.spicetify-overlay
|
||||
inputs.spicetify-nix.nixosModules.default
|
||||
];
|
||||
|
||||
programs.spicetify = {
|
||||
enable = true;
|
||||
theme = pkgs.spicetifyPkgs.themes.catppuccin;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user