nixos/modules/options/system.nix

17 lines
184 B
Nix

{
config,
lib,
...
}:
with lib;
let
cfg = config.system;
in
{
options.system = {
timeZone = mkOption {
type = types.str;
default = "US/Eastern";
};
};
}