mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
22 lines
383 B
Nix
22 lines
383 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# GNOME
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.gdm.enable = true;
|
|
desktopManager.gnome.enable = true;
|
|
};
|
|
|
|
# Add GNOME packages
|
|
environment.systemPackages = [
|
|
pkgs.amberol
|
|
];
|
|
|
|
# Remove GNOME packages
|
|
environment.gnome.excludePackages = (with pkgs; [
|
|
gnome-photos
|
|
gnome-tour
|
|
epiphany # web browser
|
|
]);
|
|
}
|