9 lines
172 B
Nix
9 lines
172 B
Nix
|
{ config, pkgs, lib, ... } :
|
||
|
with lib;
|
||
|
{
|
||
|
programs.autorandr = {
|
||
|
enable = true;
|
||
|
profiles."${config.local.platform}" = config.local.display.autorandrProfile;
|
||
|
}
|
||
|
}
|