0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Spotify makes room for Navidrome, strawberry does both!

+12 -7
+1 -1
home/host-specific/Fennekin.nix
··· 5 5 imports = [ 6 6 ./modules/touchscreen.nix 7 7 ./modules/conversation.nix 8 - ./modules/spotify.nix 8 + ./modules/music-streaming.nix 9 9 ]; 10 10 }
+1 -1
home/host-specific/Ponyta.nix
··· 5 5 imports = [ 6 6 ./modules/steam.nix 7 7 ./modules/conversation.nix 8 - ./modules/spotify.nix 8 + ./modules/music-streaming.nix 9 9 ./modules/school.nix 10 10 ]; 11 11 }
+7
home/host-specific/modules/music-streaming.nix
··· 1 + { pkgs, ... }: 2 + { 3 + home.packages = [ 4 + pkgs.spotify 5 + pkgs.strawberry 6 + ]; 7 + }
-4
home/host-specific/modules/spotify.nix
··· 1 - { pkgs, ... }: 2 - { 3 - home.packages = [ pkgs.spotify ]; 4 - }
+3 -1
home/modules/niri.nix
··· 154 154 # Startup spawns! 155 155 spawn-at-startup = [ 156 156 { command = [ "noctalia-shell" ]; } 157 - { command = [ "spotify" ]; } 157 + # { command = [ "spotify" ]; } 158 + { command = [ "strawberry" ]; } 158 159 { command = [ "discord" ]; } 159 160 { command = [ "teams-for-linux" ]; } 160 161 { command = [ "thunderbird" ]; } ··· 255 256 { 256 257 matches = [ 257 258 { app-id = "Spotify"; } 259 + { app-id = "org.strawberrymusicplayer.strawberry"; } 258 260 { app-id = "org.gnome.Music"; } 259 261 ]; 260 262 open-on-workspace = "🎧";