about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-04-25 01:51:57 +0200
committerProfpatsch <mail@profpatsch.de>2016-04-25 01:51:57 +0200
commit8ba0636172ecee2742c8d18ffd21d329c48f617b (patch)
tree7897ce0a86896659e593ff298e1c5030a8d0fd1e /modules
parent4e9ff898a06e247d989a2f220e07aa3776991aaa (diff)
modules/labtops: simplify wireless connection
Diffstat (limited to 'modules')
-rw-r--r--modules/user/openlab/labtops.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/user/openlab/labtops.nix b/modules/user/openlab/labtops.nix
index 26a08a22..9b188f5d 100644
--- a/modules/user/openlab/labtops.nix
+++ b/modules/user/openlab/labtops.nix
@@ -84,8 +84,11 @@ in
 
     services.openssh.enable = true;
 
-    networking.networkmanager.enable = true;
     networking.firewall.enable = false;
+    networking.wireless = {
+      enable = true;
+      networks."Labor 2.0".psk = "nerdhoehle2";
+    };
 
     # TODO: an argument that tells about hardware capability
     nix.maxJobs = 2;