about summary refs log tree commit diff
path: root/stallo-configuration.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-20T22·33+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-20T22·33+0200
commit9b7810ae428418907d62765a7724a8362f2952a7 (patch)
tree21a9968f998ec317c593bc5d8509e600b17d8fb4 /stallo-configuration.nix
parentbc1f098bac7f8269a668f91a704ff4fc4b0bba49 (diff)
style(all): Consistently use block/attr format & clean up
Diffstat (limited to 'stallo-configuration.nix')
-rw-r--r--stallo-configuration.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/stallo-configuration.nix b/stallo-configuration.nix
index 2925152824e6..b58497f9e4b5 100644
--- a/stallo-configuration.nix
+++ b/stallo-configuration.nix
@@ -7,12 +7,14 @@
   # Use proprietary nvidia driver
   services.xserver.videoDrivers = [ "nvidia" ];
 
-  networking.hostName = "stallo";
-  networking.wireless.enable = true;
-  networking.wireless.networks = {
-    "How do I computer?" = {
-      # Welcome to roast club!
-      psk = "washyourface";
+  networking = {
+    hostName = "stallo";
+    wireless.enable = true;
+    wireless.networks = {
+      "How do I computer?" = {
+        # Welcome to roast club!
+        psk = "washyourface";
+      };
     };
   };
 }