diff options
Diffstat (limited to '')
-rw-r--r-- | configurations/ilmare/default.nix | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/configurations/ilmare/default.nix b/configurations/ilmare/default.nix index 6ced115..e9dbf7c 100644 --- a/configurations/ilmare/default.nix +++ b/configurations/ilmare/default.nix @@ -1,6 +1,6 @@ { lib, ... }: { - imports = lib.attrValues (lib.modulesIn ./.); + imports = lib.modulesIn ./. |> lib.attrValues; nixfiles.modules = { wireguard.client.enable = true; @@ -11,6 +11,19 @@ bluetooth.enable = true; }; + hm.programs.plasma = { + input.mice = [ + { + name = "TPPS\\/2 Elan TrackPoint"; + vendorId = "2"; + productId = "a"; + acceleration = 0.250; + accelerationProfile = "none"; + } + ]; + configFile.kwinrc."Xwayland"."Scale" = 1.2; + }; + hardware.trackpoint = { enable = true; speed = 500; |