diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 89fa47c..0d67530 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -55,6 +55,10 @@ services = { hardware.bolt = {enable = false;}; + xserver = { + displayManager.gdm.enable = true; + desktopManager.gnome.enable = true; + }; pipewire = { enable = true; alsa.enable = true; @@ -165,20 +169,14 @@ programs = { zsh.enable = true; - regreet.enable = true; - hyprlock.enable = true; - hyprland = { - enable = true; - withUWSM = true; - }; }; users.users.k = { isNormalUser = true; description = "k"; extraGroups = ["networkmanager" "wheel" "cdrom" "libvirtd"]; - packages = with pkgs; [nushell]; - shell = pkgs.nushell; + packages = with pkgs; [zsh]; + shell = pkgs.zsh; }; home-manager = { @@ -190,6 +188,20 @@ sessionVariables = {MOZ_USE_XINPUT2 = "1";}; systemPackages = with pkgs; [ ]; + 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 2c946f3..9ae07d4 100644 --- a/hosts/laptop/home.nix +++ b/hosts/laptop/home.nix @@ -6,7 +6,7 @@ }: { imports = [ ../home/home_common.nix - ../home/hyprland.nix + ../home/gnome.nix ]; nixpkgs.config.allowUnfree = true;