Files
niphas/packages/kanshi.nix

18 lines
401 B
Nix
Raw Normal View History

2026-03-17 21:37:47 +01:00
{ wrappers, pkgs }:
let
kanshi = wrappers.wrapperModules.kanshi.apply {
inherit pkgs;
configFile.content = ''
profile {
output "eDP-1" enable
}
2026-03-21 22:52:03 +01:00
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
2026-03-17 21:37:47 +01:00
}
'';
};
in
kanshi.wrapper