restructure

This commit is contained in:
twoneis 2024-05-09 20:17:37 +02:00
parent d7bd686648
commit eecb15a4ec
50 changed files with 281 additions and 564 deletions

12
modules/gnome/default.nix Normal file
View 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
];
}