diff --git a/framework/configuration.nix b/framework/configuration.nix index c5c1a1a..18032cc 100644 --- a/framework/configuration.nix +++ b/framework/configuration.nix @@ -85,7 +85,7 @@ xserver = { enable = true; displayManager.gdm.enable = true; - desktopManager.plasma5.enable = true; + desktopManager.gnome.enable = true; }; syncthing = { @@ -130,12 +130,31 @@ security.pam.services.login.fprintAuth = true; - environment.systemPackages = with pkgs; [ - gnome.adwaita-icon-theme - ifuse - libimobiledevice - libheif - ]; + environment = { + gnome.excludePackages = (with pkgs; [ + gnome-console + gnome-photos + gnome-tour + ]) ++ (with pkgs.gnome; [ + atomix # puzzle game + cheese # webcam + epiphany # web browser + geary # email reader + gnome-calendar + gnome-music + hitori # sudoku game + iagno # go game + tali # poker game + totem # video player + ]); + + systemPackages = with pkgs; [ + gnome.adwaita-icon-theme + ifuse + libimobiledevice + libheif + ]; + }; programs.steam = { enable = true;