mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 07:13:40 +00:00
19 lines
274 B
Nix
19 lines
274 B
Nix
{ ... }:
|
|
|
|
{
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager = {
|
|
startx.enable = true;
|
|
gdm = {
|
|
enable = true;
|
|
wayland = false;
|
|
};
|
|
};
|
|
desktopManager.gnome.enable = true;
|
|
};
|
|
|
|
services.logrotate.checkConfig = false;
|
|
}
|