Files
niphas/packages/kanshi.nix
2026-03-21 22:52:03 +01:00

18 lines
401 B
Nix

{ wrappers, pkgs }:
let
kanshi = wrappers.wrapperModules.kanshi.apply {
inherit pkgs;
configFile.content = ''
profile {
output "eDP-1" enable
}
profile dual {
output eDP-1 mode 1920x1080 position 190,1080 scale 1.25 transform normal
output HDMI-A-2 mode 1920x1080@60Hz position 0,0 scale 1 transform normal
}
'';
};
in
kanshi.wrapper