2024-07-10 08:27:17 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./work.nix
|
|
|
|
./desktop/plasma/default.nix
|
|
|
|
];
|
|
|
|
programs.plasma = lib.mkIf config.programs.plasma.enable {
|
|
|
|
configFile.kcminputrc."Libinput/1160/4132/DELL0A21:00 0488:1024 Touchpad".NaturalScroll = true;
|
|
|
|
};
|
|
|
|
wayland.windowManager.sway = lib.mkIf config.wayland.windowManager.sway.enable {
|
|
|
|
config = {
|
|
|
|
output."eDP-1".scale = "1.25";
|
|
|
|
workspaceOutputAssign = [
|
|
|
|
{
|
|
|
|
output = "eDP-1";
|
|
|
|
workspace = "1";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2024-07-07 08:47:50 +01:00
|
|
|
};
|
2024-07-10 08:27:17 +01:00
|
|
|
services.kanshi = lib.mkIf config.wayland.windowManager.sway.enable {
|
2024-07-07 08:47:50 +01:00
|
|
|
enable = true;
|
|
|
|
settings = let
|
|
|
|
laptopScreen = {
|
|
|
|
criteria = "eDP-1";
|
|
|
|
scale = 1.25;
|
|
|
|
position = "2560,576";
|
|
|
|
};
|
|
|
|
monitor = {
|
|
|
|
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
|
|
|
scale = 1.5;
|
|
|
|
position = "0,0";
|
|
|
|
};
|
|
|
|
in [
|
|
|
|
{
|
|
|
|
profile = {
|
|
|
|
name = "undocked";
|
|
|
|
outputs = [laptopScreen];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
{
|
|
|
|
profile = {
|
|
|
|
name = "docked";
|
|
|
|
outputs = [laptopScreen monitor];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|