Add GNOME as a desktop manager, working with sway
...and wayland
This commit is contained in:
parent
5a0cfd10ae
commit
323df5ca10
3 changed files with 17 additions and 7 deletions
14
lib/nixos/modules/gnome.nix
Normal file
14
lib/nixos/modules/gnome.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.xserver = {
|
||||
desktopManager.gnome.enable = true;
|
||||
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
wayland = true;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue