13 lines
276 B
Nix
13 lines
276 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|