t14_legacy_config/home/gui/autorandr.nix
2022-11-29 19:15:08 -06:00

9 lines
173 B
Nix

{ config, pkgs, lib, ... } :
with lib;
{
programs.autorandr = {
enable = true;
profiles."${config.local.platform}" = config.local.display.autorandrProfile;
};
}