nixos/home/Northstar.nix

13 lines
281 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-07-30 15:06:34 +01:00
{
imports = [
./personal.nix
./desktop/plasma/default.nix
2024-07-08 11:24:43 +01:00
];
programs.plasma = lib.mkIf config.programs.plasma.enable {
configFile = {
kcminputrc."Libinput/1739/52759/SYNA32AA:00 06CB:CE17 Touchpad".NaturalScroll = true;
};
};
}