Evie Litherland-Smith
502e723931
Move to specific machines because I don't want the programs autostarting on laptops
13 lines
281 B
Nix
13 lines
281 B
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [
|
|
./personal.nix
|
|
./desktop/plasma/default.nix
|
|
];
|
|
programs.plasma = lib.mkIf config.programs.plasma.enable {
|
|
configFile = {
|
|
kcminputrc."Libinput/1739/52759/SYNA32AA:00 06CB:CE17 Touchpad".NaturalScroll = true;
|
|
};
|
|
};
|
|
}
|