From 65d0f5acba4449b9882beff3b4d095a5133b3abf Mon Sep 17 00:00:00 2001 From: Sijmen Date: Sun, 27 Nov 2022 14:42:43 +0100 Subject: [PATCH] Revert "Switch framework to KDE" This reverts commit ad8fdfc93caa2ea89a5b504c913b15f4a7a434bd. --- framework/configuration.nix | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) 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;