From 2c9a4b8816da9732be04f2e804ac5a36f9ed193f Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 26 Aug 2018 22:30:10 +0200 Subject: [PATCH] chore(stallo): Add 2.4Ghz network as fallback Apparently the wifi card likes to act up occasionally (this is new?) and can't see the 5Ghz network anymore. This adds the 2.4Ghz network as a fallback in those cases. --- stallo-configuration.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/stallo-configuration.nix b/stallo-configuration.nix index 21f89fb18..4af4a5fd4 100644 --- a/stallo-configuration.nix +++ b/stallo-configuration.nix @@ -18,8 +18,15 @@ hostName = "stallo"; wireless.enable = true; wireless.networks = { + # Welcome to roast club! + "How do I computer fast?" = { - # Welcome to roast club! + psk = "washyourface"; + # Prefer 5Ghz unless the card is acting up. + priority = 10; + }; + + "How do I computer?" = { psk = "washyourface"; }; };