diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-08-26T20·30+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-08-26T20·30+0200 |
commit | 2c9a4b8816da9732be04f2e804ac5a36f9ed193f (patch) | |
tree | aa79d9c284b52634a2fe68ff8e0c5273dc5d480b /stallo-configuration.nix | |
parent | b64dd00fe3cc80ecca57fa19359a23cb5a960391 (diff) |
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.
Diffstat (limited to 'stallo-configuration.nix')
-rw-r--r-- | stallo-configuration.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/stallo-configuration.nix b/stallo-configuration.nix index 21f89fb180db..4af4a5fd4c22 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"; }; }; |