about summary refs log tree commit diff
path: root/stallo-configuration.nix
blob: 592ff6a80ac8bf5b7ce2c177c43a5f84c484830e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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";
    };
  };
}