about summary refs log tree commit diff
path: root/hosts/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/configuration.nix')
-rw-r--r--hosts/configuration.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix
index ec000b0..7f312ab 100644
--- a/hosts/configuration.nix
+++ b/hosts/configuration.nix
@@ -33,13 +33,12 @@
     tmpOnTmpfs = true;
   };
 
-  # Set your time zone.
   time.timeZone = timezone;
 
   networking = {
-    hostName = hostname; # Define your hostname.
+    hostName = hostname;
     enableIPv6 = true;
-    extraHosts = builtins.readFile "${dotfiles}/hosts";
+    extraHosts = builtins.readFile "${inputs.hosts}/hosts";
     dhcpcd.enable = true;
     resolvconf.enable = true;
     nameservers = [ "127.0.0.1" ];