restructure nix configs

This commit is contained in:
2025-06-11 16:03:43 +02:00
parent c13c327727
commit 9b8bf0efc5
6 changed files with 38 additions and 34 deletions

View File

@ -0,0 +1,20 @@
{
config,
pkgs,
...
}: {
services.xserver = {
# Enable the X11 windowing system (needed even for Wayland sessions)
enable = true;
# Enable the GNOME Desktop Environment.
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
# Configure keymap in X11
xkb = {
layout = "se";
variant = "";
};
};
}