18 lines
401 B
Nix
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
|