summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-01-03 18:13:40 -0500
committerGitHub <noreply@github.com>2017-01-03 18:13:40 -0500
commit85dbc754a109ce8b49410c11e71f03dcba2cc1f7 (patch)
tree63f182dd33eb90de2ecc5f438bba4b6c5da0a871 /nixos/modules/services
parent6158604d8a7bd75d7efed38e812c0a6075031ae7 (diff)
parent428daee5bc3af7c256374277134153c2f7ba9368 (diff)
downloadnixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.tar
nixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.tar.gz
nixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.tar.bz2
nixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.tar.lz
nixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.tar.xz
nixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.tar.zst
nixlib-85dbc754a109ce8b49410c11e71f03dcba2cc1f7.zip
Merge pull request #21621 from volth/fix-synaptics-symlink
synaptics: fix broken symlink
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/x11/hardware/synaptics.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/hardware/synaptics.nix b/nixos/modules/services/x11/hardware/synaptics.nix
index 5c068e89dd71..2a7f4e5cbcd1 100644
--- a/nixos/modules/services/x11/hardware/synaptics.nix
+++ b/nixos/modules/services/x11/hardware/synaptics.nix
@@ -19,7 +19,7 @@ let cfg = config.services.xserver.synaptics;
       Option "TapButton3" "0"
     '';
   pkg = pkgs.xorg.xf86inputsynaptics;
-  etcFile = "X11/xorg.conf.d/50-synaptics.conf";
+  etcFile = "X11/xorg.conf.d/70-synaptics.conf";
 in {
 
   options = {
@@ -172,7 +172,7 @@ in {
     services.xserver.modules = [ pkg.out ];
 
     environment.etc."${etcFile}".source =
-      "${pkg.out}/share/X11/xorg.conf.d/50-synaptics.conf";
+      "${pkg.out}/share/X11/xorg.conf.d/70-synaptics.conf";
 
     environment.systemPackages = [ pkg ];