Initial commit

This commit is contained in:
demenik
2025-12-01 18:24:34 +01:00
commit fc68fa5ce9
142 changed files with 6273 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
inputs,
pkgs,
...
}: let
inherit (inputs) spicetify-nix;
in {
imports = [spicetify-nix.homeManagerModules.default];
programs.spicetify = let
spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
in {
enable = true;
spotifyLaunchFlags = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
enabledExtensions = with spicePkgs.extensions; [
keyboardShortcut
shuffle
groupSession
fullAlbumDate
showQueueDuration
betterGenres
lastfm
playNext
volumePercentage
allOfArtist
];
};
wayland.windowManager.hyprland.settings.windowrulev2 = [
"workspace 3, class:^(Spotify)$"
];
}