feat(nixos): set default timezone and locale

This commit is contained in:
Mohammad Rafiq 2025-07-07 18:29:02 +08:00
parent 294e8458e4
commit 09ab1ac5a6
No known key found for this signature in database

View file

@ -2,6 +2,8 @@
flake.modules.nixos.default = { flake.modules.nixos.default = {
persistFiles = [ "/etc/machine-id" ]; persistFiles = [ "/etc/machine-id" ];
persistDirs = [ "/var/lib/systemd" ]; persistDirs = [ "/var/lib/systemd" ];
time.timeZone = "Asia/Singapore";
i18n.defaultLocale = "en_US.UTF-8";
system.stateVersion = "25.11"; system.stateVersion = "25.11";
}; };
flake.modules.homeManager.default = flake.modules.homeManager.default =