14 lines
134 B
Nix
14 lines
134 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
cfg = config.profiles.server;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
time.timeZone = "UTC";
|
||
|
};
|
||
|
}
|