This commit is contained in:
2026-03-17 21:37:47 +01:00
parent cd55626328
commit 790b0b3451
3 changed files with 26 additions and 3 deletions

18
packages/kanshi.nix Normal file
View File

@@ -0,0 +1,18 @@
{ wrappers, pkgs }:
let
kanshi = wrappers.wrapperModules.kanshi.apply {
inherit pkgs;
configFile.content = ''
profile {
output "eDP-1" enable
}
# laptop above external monitor
profile {
output "HDMI-A-1" enable position 0,0
output "eDP-1" enable position 0,1440
}
'';
};
in
kanshi.wrapper