Add minimal GNOME module and apply to installer
This commit is contained in:
parent
6ee791ea1a
commit
ecb67915fc
2 changed files with 16 additions and 0 deletions
15
modules/desktop/gnome-minimal.nix
Normal file
15
modules/desktop/gnome-minimal.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.displayManager.gdm.enable = true;
|
||||
services.desktopManager.gnome.enable = true;
|
||||
|
||||
services.gnome.core-apps.enable = false;
|
||||
services.gnome.core-developer-tools.enable = false;
|
||||
services.gnome.games.enable = false;
|
||||
|
||||
environment.gnome.excludePackages = with pkgs; [
|
||||
gnome-tour
|
||||
gnome-user-docs
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue