diff options
author | Alan Pearce | 2017-09-23 10:23:09 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-23 10:23:09 +0200 |
commit | 78ce34a501cc9a9187eb35d15855be3fd30e0cc5 (patch) | |
tree | fb46200081f28eb327e29772c2b0bf177d19d223 | |
parent | 363b6f0870750edea48e865a84dee9c5a0ae0196 (diff) | |
download | nixos-configuration-78ce34a501cc9a9187eb35d15855be3fd30e0cc5.tar.lz nixos-configuration-78ce34a501cc9a9187eb35d15855be3fd30e0cc5.tar.zst nixos-configuration-78ce34a501cc9a9187eb35d15855be3fd30e0cc5.zip |
base: Boot faster
-rw-r--r-- | modules/base.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/base.nix b/modules/base.nix index acf773e..ee59c61 100644 --- a/modules/base.nix +++ b/modules/base.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: -{ +{ boot.loader.timeout = 1; + networking.extraHosts = '' 127.0.0.1 ${config.networking.hostName} ::1 ${config.networking.hostName} |