diff --git a/nixos-config/configuration.nix b/nixos-config/configuration.nix index a553155c..9ffb1d29 100644 --- a/nixos-config/configuration.nix +++ b/nixos-config/configuration.nix @@ -46,7 +46,6 @@ in # Enable the X11 windowing system. services.xserver = { enable = true; - displayManager.defaultSession = "Hyprland"; displayManager.lightdm = { enable = true; greeters.gtk.enable = true; @@ -95,6 +94,9 @@ in environment.systemPackages = with pkgs; [ vim xdg-utils + pciutils + wayland + hyprland ]; # Allow unfree packages diff --git a/nixos-config/home-manager.nix b/nixos-config/home-manager.nix index 9365c764..d7d591e0 100644 --- a/nixos-config/home-manager.nix +++ b/nixos-config/home-manager.nix @@ -14,7 +14,6 @@ in home.packages = [ pkgs.firefox pkgs.kitty - pkgs.pciutils pkgs.wget ]; };