diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-30 13:27:03 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-06-30 13:27:03 +0200 |
commit | d5fc380b1e77458b375c563882c39792bcd9d01a (patch) | |
tree | 362176e5a8b98120c50f8f5e26b3acfab9a5e195 /hosts/phobos | |
parent | Phobos: Add steam package (diff) | |
download | nixos-config-d5fc380b1e77458b375c563882c39792bcd9d01a.tar.gz nixos-config-d5fc380b1e77458b375c563882c39792bcd9d01a.tar.bz2 nixos-config-d5fc380b1e77458b375c563882c39792bcd9d01a.zip |
Switch from libinput to synaptics
Diffstat (limited to 'hosts/phobos')
-rw-r--r-- | hosts/phobos/default.nix | 1 | ||||
-rw-r--r-- | hosts/phobos/hardware.nix | 10 |
2 files changed, 6 insertions, 5 deletions
diff --git a/hosts/phobos/default.nix b/hosts/phobos/default.nix index 2bfcd81..cb96907 100644 --- a/hosts/phobos/default.nix +++ b/hosts/phobos/default.nix @@ -26,7 +26,6 @@ environment.systemPackages = with pkgs; [ - ]; programs = { diff --git a/hosts/phobos/hardware.nix b/hosts/phobos/hardware.nix index 05a6d43..3e316f4 100644 --- a/hosts/phobos/hardware.nix +++ b/hosts/phobos/hardware.nix @@ -42,11 +42,13 @@ in powerManagement.cpuFreqGovernor = powerMode; - services.xserver = { - videoDrivers = [ "nvidia" ]; + services = { + xserver = { + videoDrivers = [ "nvidia" ]; - # Enable touchpad support (enabled default in most desktopManager). - libinput.enable = true; + # Enable touchpad support (enabled default in most desktopManager). + synaptics.enable = true; + }; }; hardware = { |