nixos-config/modules/local-hardware-clock.nix

13 lines
264 B
Nix
Raw Normal View History

2025-02-20 13:16:42 +00:00
{ 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; };
}