From 08501fb0574094c30b7a1a5c6e195d1450e666d9 Mon Sep 17 00:00:00 2001 From: Lyn 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; };