fix(Spot): fix hosts to allow Spot playback
This commit is contained in:
parent
72bf99691f
commit
c2594c1793
1 changed files with 9 additions and 3 deletions
|
@ -9,9 +9,15 @@
|
|||
./home/main.nix
|
||||
];
|
||||
|
||||
networking.hostName = "wim";
|
||||
networking.networkmanager.enable = true;
|
||||
networking.networkmanager.wifi.backend = "wpa_supplicant";
|
||||
networking = {
|
||||
hostName = "wim";
|
||||
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.
|
||||
time.timeZone = "America/Montreal";
|
||||
|
|
Loading…
Reference in a new issue