6 lines
158 B
Nix
6 lines
158 B
Nix
{ config, lib, ... }:
|
|
{
|
|
systemd.tmpfiles.rules = lib.mkIf config.my.gpu.powersave [
|
|
"w /sys/module/pcie_aspm/parameters/policy - - - - powersave"
|
|
];
|
|
} |