diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-20T22·33+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-20T22·33+0200 |
commit | 9b7810ae428418907d62765a7724a8362f2952a7 (patch) | |
tree | 21a9968f998ec317c593bc5d8509e600b17d8fb4 /stallo-configuration.nix | |
parent | bc1f098bac7f8269a668f91a704ff4fc4b0bba49 (diff) |
style(all): Consistently use block/attr format & clean up
Diffstat (limited to 'stallo-configuration.nix')
-rw-r--r-- | stallo-configuration.nix | 14 |
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"; + }; }; }; } |