15 lines
235 B
Nix
15 lines
235 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.xserver = {
|
||
|
desktopManager.gnome.enable = true;
|
||
|
|
||
|
displayManager.gdm = {
|
||
|
enable = true;
|
||
|
wayland = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
|
||
|
}
|