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"; + }; + }; +}