fix(Spot): fix hosts to allow Spot playback

This commit is contained in:
matt1432 2023-09-17 15:53:56 -04:00
parent 72bf99691f
commit c2594c1793

View file

@ -9,9 +9,15 @@
./home/main.nix ./home/main.nix
]; ];
networking.hostName = "wim"; networking = {
networking.networkmanager.enable = true; hostName = "wim";
networking.networkmanager.wifi.backend = "wpa_supplicant"; networkmanager.enable = true;
networkmanager.wifi.backend = "wpa_supplicant";
hosts = {
# Fix spot playback issue: https://github.com/xou816/spot/issues/541#issuecomment-1200503080
"104.199.65.124" = [ "ap-gew4.spotify.com" "ap-gue1.spotify.com" ];
};
};
# Set your time zone. # Set your time zone.
time.timeZone = "America/Montreal"; time.timeZone = "America/Montreal";