mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
spotify stuff
This commit is contained in:
parent
986387dee5
commit
f20c16ac95
2 changed files with 25 additions and 0 deletions
|
@ -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";
|
||||||
|
|
20
modules/home-manager/spotify/default.nix
Normal file
20
modules/home-manager/spotify/default.nix
Normal 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";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue