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