16 lines
199 B
Nix
16 lines
199 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./global.nix ./x11.nix ./wayland.nix];
|
|
|
|
services = {
|
|
xserver = {
|
|
desktopManager.gnome = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|