mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 14:43:08 +01:00
7 lines
155 B
Nix
7 lines
155 B
Nix
{ config, lib, ... }:
|
|
|
|
let inherit (import ../../options.nix) localHWClock; in
|
|
lib.mkIf (localHWClock == true) {
|
|
time.hardwareClockInLocalTime = true;
|
|
}
|