2024-07-30 15:06:34 +01:00
|
|
|
{ config, lib, ... }:
|
2024-07-10 08:27:17 +01:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./work.nix
|
|
|
|
./desktop/plasma/default.nix
|
|
|
|
];
|
|
|
|
programs.plasma = lib.mkIf config.programs.plasma.enable {
|
2024-07-10 15:19:45 +01:00
|
|
|
configFile = {
|
|
|
|
kcminputrc."Libinput/1160/4132/DELL0A21:00 0488:1024 Touchpad".NaturalScroll = true;
|
|
|
|
};
|
2024-07-10 08:27:17 +01:00
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|