summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2017-01-03 19:23:24 +0000
committervolth <volth@webmaster.ms>2017-01-03 19:23:24 +0000
commit428daee5bc3af7c256374277134153c2f7ba9368 (patch)
tree8660560343bfd72ef757bce1b6f92564c43519ee /nixos/modules/services
parentd05656a9ca7b31df0170656f9ba0a23659361d8f (diff)
downloadnixlib-428daee5bc3af7c256374277134153c2f7ba9368.tar
nixlib-428daee5bc3af7c256374277134153c2f7ba9368.tar.gz
nixlib-428daee5bc3af7c256374277134153c2f7ba9368.tar.bz2
nixlib-428daee5bc3af7c256374277134153c2f7ba9368.tar.lz
nixlib-428daee5bc3af7c256374277134153c2f7ba9368.tar.xz
nixlib-428daee5bc3af7c256374277134153c2f7ba9368.tar.zst
nixlib-428daee5bc3af7c256374277134153c2f7ba9368.zip
fix broken link to synaptics config
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 ];