moved desktop to system instead of home scope
This commit is contained in:
parent
18186be804
commit
4c562fc8c0
6 changed files with 8 additions and 6 deletions
13
modules/gnome/default.nix
Normal file
13
modules/gnome/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }: {
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
# Don't pull unnecessary packages
|
||||
services.gnome.core-utilities.enable = false;
|
||||
environment.gnome.excludePackages = [ pkgs.gnome-tour ];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnomeExtensions.paperwm
|
||||
gnome.gnome-characters
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue