From 18ea80be2d96e8eeb17f9944526a5a97c5de64a5 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann <mail@pascal-wittmann.de> Date: Wed, 18 Dec 2024 10:34:08 +0100 Subject: [PATCH] [nixos/server] enable qemu guest agent --- nixos/server/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/server/configuration.nix b/nixos/server/configuration.nix index bd58896..62716fa 100644 --- a/nixos/server/configuration.nix +++ b/nixos/server/configuration.nix @@ -324,6 +324,9 @@ in { # Set your time zone. time.timeZone = "Europe/Berlin"; + # qemu guest agent + services.qemuGuest.enable = true; + # Security - PAM security.pam.sshAgentAuth.enable = true; security.pam.services.sudo.sshAgentAuth = true;