diff --git a/home/users/m3tam3re/dotfiles/hyprland.nix b/home/users/m3tam3re/dotfiles/hyprland.nix index a76a81e..3f69397 100644 --- a/home/users/m3tam3re/dotfiles/hyprland.nix +++ b/home/users/m3tam3re/dotfiles/hyprland.nix @@ -18,6 +18,7 @@ # Some default env vars. env = XCURSOR_SIZE,24 env = WLR_NO_HARDWARE_CURSORS,1 + env = __NV_PRIME_RENDER_OFFLOAD,1 # For all categories, see https://wiki.hyprland.org/Configuring/Variables/ input { kb_layout = de diff --git a/hosts/lkk-nix-1/default.nix b/hosts/lkk-nix-1/default.nix index 383b94f..dc241d1 100644 --- a/hosts/lkk-nix-1/default.nix +++ b/hosts/lkk-nix-1/default.nix @@ -11,7 +11,7 @@ boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only services.openssh.enable = true; - services.openssh.passwordAuthentication = false; + services.openssh.settings.PasswordAuthentication' = false; networking = { hostName = "lkk-nix-1"; firewall.enable = true; diff --git a/hosts/lkk-nix-1/services/container.nix b/hosts/lkk-nix-1/services/container.nix index 977ac64..8158f80 100644 --- a/hosts/lkk-nix-1/services/container.nix +++ b/hosts/lkk-nix-1/services/container.nix @@ -5,6 +5,7 @@ virtualisation.podman = { enable = true; + defaultNetwork.settings = { dns_enabled = true; }; }; virtualisation.oci-containers.backend = "podman"; }