feat(ops/nixos/nugget): Connect to wifi & install Google Chrome

This adds configuration which, sometimes, when the stars align just
right, makes it possible to cast to the Chromecast from nugget.
This commit is contained in:
Vincent Ambo 2020-01-19 01:44:40 +00:00
parent d05489adaa
commit 89b0a43786

View file

@ -55,7 +55,16 @@ in pkgs.lib.fix(self: {
];
# Open Chromecast-related ports & servedir
firewall.enable = false;
firewall.allowedTCPPorts = [ 4242 5556 5558 ];
# Connect to the WiFi to let the Chromecast work.
wireless.enable = true;
wireless.networks = {
"How do I computer?" = {
psk = "washyourface";
};
};
};
# Generate an immutable /etc/resolv.conf from the nameserver settings
@ -91,6 +100,7 @@ in pkgs.lib.fix(self: {
fd
gnupg
go
google-chrome
google-cloud-sdk
htop
imagemagick