mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 08:13:06 +01:00
20 lines
368 B
Nix
20 lines
368 B
Nix
|
{
|
||
|
inputs,
|
||
|
lib,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
# Enable the X11 windowing system.
|
||
|
services.xserver.enable = true;
|
||
|
|
||
|
# Enable the GNOME Desktop Environment.
|
||
|
services.xserver.displayManager.gdm.enable = true;
|
||
|
services.xserver.desktopManager.gnome.enable = true;
|
||
|
|
||
|
# Configure keymap in X11
|
||
|
services.xserver = {
|
||
|
layout = "de";
|
||
|
xkbVariant = "";
|
||
|
};
|
||
|
}
|