|
@ -1,3 +1,37 @@ |
|
|
# This file is controlled by /etc/dotfiles/README.org |
|
|
# This file is controlled by /etc/dotfiles/README.org |
|
|
{ # TODO |
|
|
|
|
|
|
|
|
{ config, pkgs, ... }: |
|
|
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
time.timeZone = "America/Toronto"; |
|
|
|
|
|
|
|
|
|
|
|
networking.hostName = "homecloud"; |
|
|
|
|
|
networking.firewall.enable = false; |
|
|
|
|
|
networking.networkmanager.enable = true; |
|
|
|
|
|
networking.interfaces.eth0.useDHCP = true; |
|
|
|
|
|
networking.interfaces.wlan0.useDHCP = true; |
|
|
|
|
|
|
|
|
|
|
|
networking.wireless.networks.MyWiFi_5C1870.pskRaw = |
|
|
|
|
|
"409b3c85fef1c5737f284d2f82f20dc6023e41804e862d4fa26265ef8193b326"; |
|
|
|
|
|
networking.hosts = { |
|
|
|
|
|
"192.168.3.105" = [ "gamingpc" ]; |
|
|
|
|
|
# "" = [ "acernitro" ]; |
|
|
|
|
|
"192.168.3.163" = [ "acernitro_" ]; |
|
|
|
|
|
"192.168.3.182" = [ "raspberry" ]; |
|
|
|
|
|
"192.168.3.123" = [ "raspberry_" ]; |
|
|
|
|
|
"192.168.3.183" = [ "homecloud" ]; |
|
|
|
|
|
# "" = [ "homecloud_" ]; |
|
|
|
|
|
# "" = [ "zero-one" ]; |
|
|
|
|
|
# "" = [ "zero-two" ]; |
|
|
|
|
|
# "" = [ "android" ]; |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = [ |
|
|
|
|
|
pkgs.libraspberrypi |
|
|
|
|
|
pkgs.raspberrypi-eeprom |
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
users.users.chris = { |
|
|
|
|
|
isNormalUser = true; |
|
|
|
|
|
extraGroups = [ "wheel" "networkmanager" ]; |
|
|
|
|
|
}; |
|
|
} |
|
|
} |