13 lines
264 B
Nix
13 lines
264 B
Nix
|
{ lib, pkgs, config, ... }:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.local.hardware-clock;
|
||
|
in
|
||
|
{
|
||
|
options.local.hardware-clock = {
|
||
|
enable = mkEnableOption "change hardware clock to local time";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable { time.hardwareClockInLocalTime = true; };
|
||
|
}
|