From 21660c6bb62d0774a74280a853aec09b846db96d Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 15 Oct 2017 16:37:22 +0200 Subject: [PATCH] feat(stallo): Add local configuration for stallo --- stallo-configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 stallo-configuration.nix diff --git a/stallo-configuration.nix b/stallo-configuration.nix new file mode 100644 index 000000000..592ff6a80 --- /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"; + }; + }; +}