Add basic gnome conf
This commit is contained in:
parent
4da25248b8
commit
bb94436374
1 changed files with 11 additions and 0 deletions
11
modules/gnome.nix
Normal file
11
modules/gnome.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
# Enable the X11 windowing system.
|
||||||
|
services.xserver.enable = true;
|
||||||
|
|
||||||
|
# Enable the Gnome Desktop Environment.
|
||||||
|
services.xserver.displayManager.gdm.enable = true;
|
||||||
|
|
||||||
|
# Enable the GNOME shell.
|
||||||
|
services.xserver.desktopManager.gnome.enable = true;
|
||||||
|
}
|
Loading…
Reference in a new issue