Compare commits

...

2 Commits

Author SHA1 Message Date
a3576c89f6 Update kitchen hostname 2022-01-17 05:10:47 +00:00
661a612d16 Add timezone to work config 2022-01-17 05:10:38 +00:00
2 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "kitchen-nixos"; # Define your hostname.
# The global useDHCP flag is deprecated, therefore explicitly set to false here. # The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config # Per-interface useDHCP will be mandatory in the future, so this generated config

View File

@ -16,6 +16,8 @@ in
environment.etc.hosts.enable = false; environment.etc.hosts.enable = false;
environment.etc."resolv.conf".enable = false; environment.etc."resolv.conf".enable = false;
time.timeZone = "America/New_York";
programs.adb.enable = true; programs.adb.enable = true;
networking.dhcpcd.enable = false; networking.dhcpcd.enable = false;