nixos/spec/constant.nix

12 lines
281 B
Nix
Raw Normal View History

{
i18n.defaultLocale = "en_GB.UTF-8";
time.timeZone = "Asia/Hong_Kong";
environment.etc.nixos.source = "/nix/persist/config";
2025-01-13 11:52:09 +08:00
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
2024-01-02 16:21:11 +08:00
nixpkgs.config.allowUnfree = true;
system.stateVersion = "23.11";
}