nixos-config/system/gnome.nix
2025-08-09 12:02:06 -06:00

31 lines
641 B
Nix
Executable File

{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
# services.xserver.displayManager.gdm.enable = true;
# services.xserver.desktopManager.gnome.enable = true;
environment.systemPackages =
(with pkgs.gnomeExtensions; [
blur-my-shell
pop-shell
tactile
pop-shell
space-bar
undecorate
pastafarian-holy-days
just-perfection
appindicator
])
++ (with pkgs; [
#vimix-cursors
# breeze-icons
tokyonight-gtk-theme
# gnome-tweaks
# adwaita-icon-theme
]);
}