spotify stuff

This commit is contained in:
blahai 2024-08-31 01:10:17 +03:00
parent 986387dee5
commit f20c16ac95
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
2 changed files with 25 additions and 0 deletions

View file

@ -21,6 +21,11 @@
ags.url = "github:Aylur/ags/05e0f23534fa30c1db2a142664ee8f71e38db260"; ags.url = "github:Aylur/ags/05e0f23534fa30c1db2a142664ee8f71e38db260";
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = { sops-nix = {
url = "github:Mic92/sops-nix"; url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";

View file

@ -0,0 +1,20 @@
{ pkgs, lib, config, ... }: {
imports = [
inputs.spicetify-nix.homeManagerModules.default
];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
hidePodcasts
];
theme = spicePkgs.themes.comfy;
colorScheme = "Hikari";
}
}