nix/hosts/adrift/id.nix
2025-11-21 17:25:05 +11:00

9 lines
287 B
Nix

{ ... }:
{
networking.hostName = "adrift"; # Define your hostname.
time.timeZone = "Australia/Sydney";
time.hardwareClockInLocalTime = false;
i18n.defaultLocale = "en_AU.UTF-8";
i18n.supportedLocales = [ "en_AU.UTF-8/UTF-8" ];
nixpkgs.hostPlatform.system = "x86_64-linux";
}