nixos/modules/core/system.nix

23 lines
258 B
Nix

{
config,
lib,
...
}:
with lib;
let
cfg = config.system;
in
{
nix = {
settings = {
experimental-features = [
"nix-command"
"flakes"
];
};
};
time.timeZone = cfg.timeZone;
system.stateVersion = "25.05";
}