about summary refs log tree commit diff
path: root/stallo-configuration.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-08-26T20·30+0200
committerVincent Ambo <tazjin@gmail.com>2018-08-26T20·30+0200
commit2c9a4b8816da9732be04f2e804ac5a36f9ed193f (patch)
treeaa79d9c284b52634a2fe68ff8e0c5273dc5d480b /stallo-configuration.nix
parentb64dd00fe3cc80ecca57fa19359a23cb5a960391 (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.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/stallo-configuration.nix b/stallo-configuration.nix
index 21f89fb180..4af4a5fd4c 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";
       };
     };