Setup xserver in common and touchpad in lappy.
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
./services/displaymanager.nix
|
||||
./services/nix-flatpak.nix
|
||||
./services/sound.nix
|
||||
./services/xserver.nix
|
||||
./system/bluetooth.nix
|
||||
./system/locale.nix
|
||||
./system/security.nix
|
||||
|
||||
11
nodes/hosts/common/services/xserver.nix
Normal file
11
nodes/hosts/common/services/xserver.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ...}: {
|
||||
# Enable the X11 windowing system.
|
||||
# You can disable this if you're only using the Wayland session.
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user