Don't set timezone

This commit is contained in:
Henry Hiles 2025-01-12 17:47:45 +00:00
parent f896e89d35
commit 850d25a9ee
4 changed files with 1 additions and 1 deletions

View file

@ -1,25 +0,0 @@
{
pkgs,
lib,
...
}: let
setvcp = "${lib.meta.getExe pkgs.ddcutil} setvcp D6";
in {
hardware.i2c.enable = true;
systemd.services = {
monitor-off = rec {
script = "${setvcp} 05";
wantedBy = ["sleep.target" "final.target"];
before = wantedBy;
serviceConfig.Type = "oneshot";
unitConfig.DefaultDependencies = false;
};
monitor-on = rec {
script = "${setvcp} 01";
wantedBy = ["sleep.target" "multi-user.target"];
after = wantedBy;
};
};
}

View file

@ -1,6 +1,5 @@
{
security.rtkit.enable = true;
nixpkgs.config.allowUnfree = true;
time.timeZone = "America/Toronto";
i18n.defaultLocale = "en_CA.UTF-8";
}