35 lines
704 B
Nix
35 lines
704 B
Nix
{...}: {
|
|
imports = [./work.nix];
|
|
wayland.windowManager.sway.config.output = {
|
|
"eDP-1" = {
|
|
scale = "1.25";
|
|
position = "2560 576";
|
|
};
|
|
"Dell Inc. DELL P3223QE CCG8YN3" = {
|
|
scale = "1.5";
|
|
position = "0 0";
|
|
};
|
|
};
|
|
services.kanshi = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
profiles = let
|
|
laptopScreen = {
|
|
criteria = "eDP-1";
|
|
status = "enable";
|
|
};
|
|
monitor = {
|
|
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
|
status = "enable";
|
|
};
|
|
in {
|
|
undocked = {
|
|
outputs = [laptopScreen];
|
|
};
|
|
docked = {
|
|
outputs = [monitor laptopScreen];
|
|
};
|
|
};
|
|
};
|
|
}
|