diff options
Diffstat (limited to 'configurations/ilmare')
-rw-r--r-- | configurations/ilmare/default.nix | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/configurations/ilmare/default.nix b/configurations/ilmare/default.nix index bb89699..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; @@ -18,6 +31,11 @@ }; services = { + displayManager = { + sddm.enable = lib.mkForce false; + ly.enable = true; + }; + thinkfan = { enable = true; settings = { |