feat: enable tinymist and add dualsense service configuration

This commit is contained in:
uttarayan21
2025-11-25 23:09:03 +05:30
parent 106eccf350
commit 3a8e182170
4 changed files with 15 additions and 0 deletions

View File

@@ -3,5 +3,7 @@
wlx-overlay-s
wayvr-dashboard
bs-manager
monado-vulkan-layers
envision
];
}

View File

@@ -21,5 +21,6 @@
./fprintd.nix
./handoff.nix
./gstreamer.nix
./dualsense.nix
];
}

View File

@@ -0,0 +1,11 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
dualsensectl
];
services.udev.extraRules = ''
# USB
ATTRS{name}=="Sony Interactive Entertainment DualSense Wireless Controller Touchpad", ENV{LIBINPUT_IGNORE_DEVICE}="1"
# Bluetooth
ATTRS{name}=="DualSense Wireless Controller", ENV{LIBINPUT_IGNORE_DEVICE}="1"
'';
}