Merge pull request #32188 from NixOS/copumpkin-aws-ntp

amazon-image: use NTP provided by the hypervisor
This commit is contained in:
Eelco Dolstra 2017-11-30 13:06:25 +01:00 committed by GitHub
commit 949a6e3ec5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,5 +152,8 @@ let cfg = config.ec2; in
environment.systemPackages = [ pkgs.cryptsetup ];
boot.initrd.supportedFilesystems = [ "unionfs-fuse" ];
# EC2 has its own NTP server provided by the hypervisor
networking.timeServers = [ "169.254.169.123" ];
};
}