t14_legacy_config/home/gui/autorandr.nix

15 lines
325 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... } :
with lib;
2022-11-30 04:29:21 +01:00
let
cfg = config.local.gui.autorandr;
in
{
2022-11-30 04:29:21 +01:00
options.local.gui.autorandr.enable = mkEnableOption "Autorandr";
config = mkIf cfg.enable {
programs.autorandr = {
enable = true;
profiles."${config.local.platform}" = config.local.display.autorandrProfile;
};
2022-11-30 01:55:34 +01:00
};
}