36 lines
736 B
Nix
36 lines
736 B
Nix
{...}: {
|
|
imports = [./work.nix];
|
|
wayland.windowManager.sway.config.output = {
|
|
"eDP-1".scale = "1.25";
|
|
"Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
|
|
};
|
|
services.kanshi = {
|
|
enable = true;
|
|
systemdTarget = "sway-session.target";
|
|
profiles = {
|
|
undocked = {
|
|
outputs = [
|
|
{
|
|
criteria = "eDP-1";
|
|
status = "enable";
|
|
scale = 1.25;
|
|
}
|
|
];
|
|
};
|
|
docked = {
|
|
outputs = [
|
|
{
|
|
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
|
status = "enable";
|
|
scale = 1.5;
|
|
}
|
|
{
|
|
criteria = "eDP-1";
|
|
status = "disable";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|