diff options
| author | Baitinq <[email protected]> | 2022-06-30 13:27:03 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-30 13:27:03 +0200 |
| commit | c59d1d46cca924b65f6e52245ed341ff5fa105dc (patch) | |
| tree | b1ff5ce4c4dfdab6f58930428e169e3ce3cabcb7 /hosts | |
| parent | Phobos: Add steam package (diff) | |
| download | nixos-config-c59d1d46cca924b65f6e52245ed341ff5fa105dc.tar.gz nixos-config-c59d1d46cca924b65f6e52245ed341ff5fa105dc.tar.bz2 nixos-config-c59d1d46cca924b65f6e52245ed341ff5fa105dc.zip | |
Switch from libinput to synaptics
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/luna/hardware.nix | 10 | ||||
| -rw-r--r-- | hosts/phobos/default.nix | 1 | ||||
| -rw-r--r-- | hosts/phobos/hardware.nix | 10 |
3 files changed, 12 insertions, 9 deletions
diff --git a/hosts/luna/hardware.nix b/hosts/luna/hardware.nix index 4d068d0..ade190f 100644 --- a/hosts/luna/hardware.nix +++ b/hosts/luna/hardware.nix @@ -42,11 +42,13 @@ in powerManagement.cpuFreqGovernor = powerMode; - services.xserver = { - videoDrivers = [ "intel" ]; + services = { + xserver = { + videoDrivers = [ "intel" ]; - # Enable touchpad support (enabled default in most desktopManager). - libinput.enable = true; + # Enable touchpad support (enabled default in most desktopManager). + synaptics.enable = true; + }; }; hardware = { 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 = { |