First Commit

This commit is contained in:
2026-01-05 04:04:36 +01:00
commit c7a17f7772
83 changed files with 3574 additions and 0 deletions

12
hosts/lillypc/systemd.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
systemd.services.nvidia-undervolt = {
enable = true;
description = "Set NVIDIA GPU undervolt";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${pkgs.nvidia_oc}/bin/nvidia_oc set --index 0 --freq-offset 250";
};
};
}