mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
25 lines
546 B
Nix
25 lines
546 B
Nix
{
|
|
services = {
|
|
xserver = {
|
|
enable = true;
|
|
displayManager.gdm = {
|
|
enable = true;
|
|
autoSuspend = false;
|
|
wayland = false;
|
|
};
|
|
desktopManager.gnome = {
|
|
enable = true;
|
|
};
|
|
};
|
|
geoclue2.enable = true;
|
|
gnome.games.enable = true;
|
|
};
|
|
networking.networkmanager.enable = true;
|
|
services.avahi.enable = true;
|
|
|
|
# Enable CUPS to print documents.
|
|
services.printing.enable = true;
|
|
services.avahi.nssmdns = true;
|
|
# for a WiFi printer
|
|
services.avahi.openFirewall = true;
|
|
}
|