Merge pull request 'main' (#3) from jan-leila/nix-config:main into main

Reviewed-on: Lithospherical/nix-config#3
This commit is contained in:
jan-leila 2025-06-08 16:51:33 +00:00
commit a2b076e2e5
2 changed files with 6 additions and 0 deletions

View file

@ -18,6 +18,7 @@ in {
home.packages = lib.lists.optionals userConfig.isDesktopUser ( home.packages = lib.lists.optionals userConfig.isDesktopUser (
with pkgs; [ with pkgs; [
ungoogled-chromium ungoogled-chromium
krita
(lib.mkIf hardware.piperMouse.enable piper) (lib.mkIf hardware.piperMouse.enable piper)
] ]
); );

View file

@ -36,6 +36,11 @@
# Enable the X11 windowing system. # Enable the X11 windowing system.
services.xserver.enable = true; services.xserver.enable = true;
# Enable wacom touchscreen device
services.xserver.wacom.enable = true;
# installed opentabletdriver
hardware.opentabletdriver.enable = true;
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services.displayManager.gdm.enable = true; services.displayManager.gdm.enable = true;