mirror of
https://github.com/eliasrenman/nixos-config.git
synced 2026-03-17 04:16:06 +01:00
feat: added gnome
This commit is contained in:
23
gnome.nix
Normal file
23
gnome.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
services.xserver.displayManager.gdm = {
|
||||
enable = true;
|
||||
wayland = true;
|
||||
};
|
||||
|
||||
# Remove GNOME bloat you probably don't want
|
||||
environment.gnome.excludePackages = with pkgs.gnome; [
|
||||
gnome-music
|
||||
gnome-weather
|
||||
gnome-maps
|
||||
epiphany # GNOME browser, you already have Firefox
|
||||
totem # video player, you have vlc
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome.gnome-tweaks
|
||||
gnome-extension-manager
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user