diff --git a/hosts/kardorf/default.nix b/hosts/kardorf/default.nix index 564ee04..7131b36 100644 --- a/hosts/kardorf/default.nix +++ b/hosts/kardorf/default.nix @@ -4,11 +4,15 @@ ../common/global ../common/users/julian + ../common/users/wolfi ../common/optional/remote-builder.nix ../common/optional/boot-efi.nix ../common/optional/greetd.nix + # ../common/optional/gdm.nix + # ../common/optional/i3.nix + ../common/optional/authentication.nix ../common/optional/pcmanfm.nix ../common/optional/pipewire.nix @@ -20,12 +24,18 @@ networking.hostName = "kardorf"; system.stateVersion = "22.11"; - services.xserver.videoDrivers = ["nvidia"]; + # Not using the drivers leads to way better results + # services.xserver.videoDrivers = [ "nvidia" ]; programs.kdeconnect.enable = true; + # services.xserver.desktopManager.xfce.enable = true; + services.xserver.desktopManager.plasma6.enable = true; + # Enable CUPS to print documents. services.printing.enable = true; services.printing.browsing = true; services.printing.drivers = with pkgs; [gutenprint]; + + services.libinput.enable = true; }