about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-02-15 00:37:07 +0000
committerGitHub <noreply@github.com>2021-02-15 00:37:07 +0000
commit018f748b81b8be9fdb914d03d403c19d31504f83 (patch)
tree20ff79c9b6aac31b5973221d488ea96b3735ee2d /nixos
parent056f697397f0971aac7f3e022f9b90dc80d194e9 (diff)
parent0630986bf79eae61e36211f9dcfe4d4abf5a03b3 (diff)
Merge staging-next into staging
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/xow.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/modules/services/hardware/xow.nix b/nixos/modules/services/hardware/xow.nix
index a18d60ad83bec..311181176bd83 100644
--- a/nixos/modules/services/hardware/xow.nix
+++ b/nixos/modules/services/hardware/xow.nix
@@ -10,7 +10,10 @@ in {
   config = lib.mkIf cfg.enable {
     hardware.uinput.enable = true;
 
+    boot.extraModprobeConfig = lib.readFile "${pkgs.xow}/lib/modprobe.d/xow-blacklist.conf";
+
     systemd.packages = [ pkgs.xow ];
+    systemd.services.xow.wantedBy = [ "multi-user.target" ];
 
     services.udev.packages = [ pkgs.xow ];
   };