diff options
author | Franz Geffke <m@f-a.nz> | 2025-03-22 12:06:33 +0000 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2025-03-22 12:06:33 +0000 |
commit | 8be0b4cf1f2851c98347022d9864dcac8bf7d2cb (patch) | |
tree | d649d4e4910a23a1e72da9aa7e04a067dc8b5c14 /px | |
parent | e8b7b41dc0d32d02bfd72a43dbae54a5c3c73fad (diff) |
px: hardware: thinkpad: Remove module
Diffstat (limited to 'px')
-rw-r--r-- | px/hardware/lenovo.scm | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/px/hardware/lenovo.scm b/px/hardware/lenovo.scm deleted file mode 100644 index 89a670a..0000000 --- a/px/hardware/lenovo.scm +++ /dev/null @@ -1,32 +0,0 @@ -(define-module (px hardware lenovo) - #:use-module (gnu services sddm) - #:use-module (gnu services xorg) - #:use-module (nongnu packages linux) - #:use-module (px system os) - #:use-module (px packages throttled) - #:use-module (px system config) - #:export (%lenovo-thinkpad-t450-template)) - -(define %lenovo-thinkpad-t450-template - (os-template - (title "Lenovo ThinkPad T450 hardware") - (firmwares (list iwlwifi-firmware)) - (packages (list throttled)) - (services (list - (os-template-service - (type 'edit) - (kind sddm-service-type) - (action (lambda (config) - (sddm-configuration - (inherit config) - (xorg-configuration - (xorg-configuration - (extra-config - `( "Section \"InputClass\"\n" - " Identifier \"touchpad\"\n" - " Driver \"libinput\"\n" - " MatchIsTouchpad \"on\"\n" - " Option \"Tapping\" \"on\"\n" - "EndSection\n" - "\n"))))) - ))))))) |