diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 910ef78..8ffe277 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -55,10 +55,11 @@ services = { hardware.bolt = {enable = false;}; - xserver = { - displayManager.gdm.enable = true; - desktopManager.gnome.enable = true; + displayManager.sddm = { + enable = true; + wayland.enable = true; }; + desktopManager.plasma6.enable = true; pipewire = { enable = true; alsa.enable = true; @@ -189,20 +190,6 @@ systemPackages = with pkgs; [ config.boot.kernelPackages.perf ]; - gnome.excludePackages = (with pkgs; [ - atomix # puzzle game - cheese # webcam tool - epiphany # web browser - geary # email reader - gedit # text editor - gnome-characters - gnome-music - gnome-photos - gnome-tour - hitori # sudoku game - iagno # go game - tali # poker game - ]); }; systemd.sleep.extraConfig = '' diff --git a/hosts/laptop/home.nix b/hosts/laptop/home.nix index 3c5a879..8e3fecd 100644 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -6,7 +6,6 @@ }: { imports = [ ../home/home_common.nix - ../home/gnome.nix ]; nixpkgs.config.allowUnfree = true;