chore(flake): Update flake inputs

This commit is contained in:
Alexander Kobjolke 2024-05-21 22:40:10 +02:00
parent d5917fe054
commit 548cf19a72
3 changed files with 52 additions and 72 deletions

View file

@ -1,9 +1,16 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
# Enable the X11 windowing system.
services = {
dbus = { enable = true; };
dbus = {
enable = true;
};
xserver = {
enable = true;
@ -22,15 +29,14 @@
desktopManager.xfce.enable = true;
desktopManager.gnome.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
libinput = {
enable = true;
touchpad.disableWhileTyping = true;
touchpad.tapping = false;
mouse.naturalScrolling =
config.services.xserver.libinput.touchpad.naturalScrolling;
};
# Enable touchpad support (enabled default in most desktopManager).
libinput = {
enable = true;
touchpad.disableWhileTyping = true;
touchpad.tapping = false;
mouse.naturalScrolling = config.services.libinput.touchpad.naturalScrolling;
};
};
}