about summary refs log tree commit diff
path: root/stallo-configuration.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2017-10-15T14·37+0200
committerVincent Ambo <tazjin@gmail.com>2017-10-15T14·37+0200
commit21660c6bb62d0774a74280a853aec09b846db96d (patch)
tree4410c6939b64a3ac7c1cd3aaff53b3645c08fe32 /stallo-configuration.nix
parentc4c0345d3f23540ab27919ae11573bfb4556c9ea (diff)
feat(stallo): Add local configuration for stallo
Diffstat (limited to 'stallo-configuration.nix')
-rw-r--r--stallo-configuration.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/stallo-configuration.nix b/stallo-configuration.nix
new file mode 100644
index 000000000000..592ff6a80ac8
--- /dev/null
+++ b/stallo-configuration.nix
@@ -0,0 +1,14 @@
+
+# Local configuration for 'stallo' (Home desktop PC)
+{ config, ...}:
+
+{
+  networking.hostName = "stallo";
+  networking.wireless.enable = true;
+  networking.wireless.networks = {
+    "How do I computer fast?" = {
+      # Welcome to roast club!
+      psk = "washyourface";
+    };
+  };
+}