feat(stallo): Add local configuration for stallo

This commit is contained in:
Vincent Ambo 2017-10-15 16:37:22 +02:00
parent c4c0345d3f
commit 21660c6bb6

14
stallo-configuration.nix Normal file
View file

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