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
|
./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";
|
||||||
|
|
Loading…
Reference in a new issue