nixos: remove qmk/via udev rules as they conflict with my xbox controller through bluetooth
This commit is contained in:
parent
0dd5d766fe
commit
4cb285ac2d
11
nixos.nix
11
nixos.nix
|
@ -237,10 +237,11 @@ in
|
|||
};
|
||||
|
||||
# Enable QMK support.
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
# hardware.keyboard.qmk.enable = true;
|
||||
# FIXME: Causing issues with xpadneo :(
|
||||
|
||||
# Enable the udev rules Steam recommends for controllers.
|
||||
hardware.steam-hardware.enable = true;
|
||||
# enable a better driver for wireless xbox controllers.
|
||||
hardware.xpadneo.enable = true;
|
||||
|
||||
# Enable fstrim for better ssd lifespan
|
||||
services.fstrim.enable = true;
|
||||
|
@ -259,6 +260,7 @@ in
|
|||
# Enable Hyprland
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
|
||||
package = hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
||||
};
|
||||
|
||||
|
@ -429,7 +431,8 @@ in
|
|||
services.flatpak.enable = true;
|
||||
|
||||
# Enables VIA
|
||||
services.udev.packages = [ pkgs.via ];
|
||||
# services.udev.packages = [ pkgs.via ];
|
||||
# FIXME: Causing issues with xpadneo :(
|
||||
|
||||
# Enable and configure PostgreSQL.
|
||||
services.postgresql = {
|
||||
|
|
Loading…
Reference in a new issue