machine_setup/nix/configuration/hosts/odo/screen_brightness.nix

10 lines
146 B
Nix
Raw Normal View History

2024-12-31 12:51:23 -05:00
{
imports = [ ];
config = {
systemd.tmpfiles.rules = [
"w- /sys/class/backlight/amdgpu_bl1/brightness - - - - 32767"
];
};
2024-12-31 12:51:23 -05:00
}