From 2e8663f7b662985b10d32a49613463e99f978133 Mon Sep 17 00:00:00 2001 From: hannes Date: Wed, 24 Jan 2024 12:38:42 +0100 Subject: [PATCH] qemu-guestagent + hostname fix --- configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 266c6bf..deadeee 100644 --- a/configuration.nix +++ b/configuration.nix @@ -22,7 +22,7 @@ #boot.loader.grub.enable = true; #boot.loader.grub.device = "/dev/sda"; - networking.hostName = "gitea"; # Define your hostname. + networking.hostName = "forgojo"; # Define your hostname. # Set your time zone. time.timeZone = "Europe/Berlin"; @@ -73,7 +73,9 @@ PermitRootLogin = "no"; PasswordAuthentication = false; }; - + #enable qemu-guestagent + services.qemuGuest.enable = true; + openFirewall = true; };