nixos-config/system/gui/gnome.nix
Sravan Balaji 4a157b888b 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
2024-03-24 20:54:48 -04:00

11 lines
175 B
Nix

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