mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 11:23:40 +00:00
22 lines
331 B
Nix
22 lines
331 B
Nix
{...}: {
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager = {
|
|
lightdm = {
|
|
enable = false;
|
|
};
|
|
gdm = {
|
|
enable = true;
|
|
wayland = false;
|
|
};
|
|
};
|
|
desktopManager = {
|
|
gnome = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
services.logrotate.checkConfig = false;
|
|
}
|