Add GNOME

- Add config option to switch between window managers / desktop environments
- Remove systemPackages attribute when a service or program attribute is available
- Add GNOME to gui
This commit is contained in:
Sravan Balaji
2024-03-24 20:54:48 -04:00
parent 8722b995cc
commit 4a157b888b
12 changed files with 14 additions and 24 deletions

10
system/gui/gnome.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
imports = [
./x11.nix
];
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
}