{ config, pkgs, ... }: with pkgs.lib; { options = { time = { timeZone = mkOption { default = "CET"; type = types.str; example = "America/New_York"; description = "The time zone used when displaying times and dates."; }; hardwareClockInLocalTime = mkOption { default = false; description = "If set, keep the hardware clock in local time instead of UTC."; }; }; }; config = { environment.variables.TZDIR = "/etc/zoneinfo"; environment.etc.localtime = { source = "${pkgs.tzdata}/share/zoneinfo/${config.time.timeZone}"; mode = "direct-symlink"; }; environment.etc.zoneinfo.source = "${pkgs.tzdata}/share/zoneinfo"; }; }