restructure
This commit is contained in:
parent
d7bd686648
commit
eecb15a4ec
50 changed files with 281 additions and 564 deletions
12
modules/gnome/default.nix
Normal file
12
modules/gnome/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs, lib, config, ... }: lib.mkIf (config.withGnome) {
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
# Don't install 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