summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/x11/hardware
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/x11/hardware
parentd05656a9ca7b31df0170656f9ba0a23659361d8f (diff)
fix broken link to synaptics config
Diffstat (limited to 'nixos/modules/services/x11/hardware')
-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 ];