2024-07-10 08:27:17 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./personal.nix
|
|
|
|
./desktop/plasma/default.nix
|
2024-07-08 11:24:43 +01:00
|
|
|
];
|
2024-07-10 08:27:17 +01:00
|
|
|
programs.plasma = lib.mkIf config.programs.plasma.enable {
|
|
|
|
configFile.kcminputrc."Libinput/1739/52759/SYNA32AA:00 06CB:CE17 Touchpad".NaturalScroll = true;
|
|
|
|
};
|
|
|
|
wayland.windowManager.sway = lib.mkIf config.wayland.windowManager.sway.enable {
|
|
|
|
config.workspaceOutputAssign = [
|
|
|
|
{
|
|
|
|
output = "eDP-1";
|
|
|
|
workspace = "1";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|