t14_legacy_config/home/gui/autorandr.nix

9 lines
173 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... } :
with lib;
{
programs.autorandr = {
enable = true;
profiles."${config.local.platform}" = config.local.display.autorandrProfile;
2022-11-30 01:55:34 +01:00
};
}