Compare commits

..

No commits in common. "36180ec0be97d926fa8b4d65429beb5c68c0f2c9" and "378828b8565a39bf0d9d72f5c7c41e19da5f56ed" have entirely different histories.

5 changed files with 1 additions and 63 deletions

1
.gitignore vendored
View file

@ -1,2 +1 @@
/.direnv
**/.qmlls.ini

24
flake.lock generated
View file

@ -374,7 +374,6 @@
"lanzaboote": "lanzaboote",
"nixpkgs": "nixpkgs_2",
"quickshell": "quickshell",
"spicetify-nix": "spicetify-nix",
"systems": "systems",
"watt": "watt"
}
@ -400,29 +399,6 @@
"type": "github"
}
},
"spicetify-nix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"systems": [
"systems"
]
},
"locked": {
"lastModified": 1752381641,
"narHash": "sha256-R2iDZb94RosuCeuIukacZVVXxzWYr4jn/QI/ax15nW8=",
"owner": "Gerg-L",
"repo": "spicetify-nix",
"rev": "8f9fd947c52aa6adb6bafe72516eccf186708954",
"type": "github"
},
"original": {
"owner": "Gerg-L",
"repo": "spicetify-nix",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1689347949,

View file

@ -52,11 +52,6 @@
url = "github:notashelf/watt";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
quickshell = {
# add ?ref=<tag> to track a tag

View file

@ -58,6 +58,7 @@
rmpc
ruby_3_2
signal-desktop
spotify
starship
telegram-desktop
thunderbird

View file

@ -1,33 +0,0 @@
{
inputs,
pkgs,
...
}: let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
spicetify = inputs.spicetify-nix.lib.mkSpicetify pkgs {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
# enabledCustomApps = with spicePkgs.apps; [
# newReleases
# lyricsPlus
# ncsVisualizer
# ];
enabledExtensions = with spicePkgs.extensions; [
shuffle
hidePodcasts
keyboardShortcut
groupSession
keyboardShortcut
betterGenres
autoVolume
lastfm
];
};
in {
environment.systemPackages =
[spicetify]
++ (with pkgs; [
sptlrx
]);
}