Add qemu-guest-utils module

This commit is contained in:
JuliusFreudenberger 2025-08-17 01:35:09 +02:00
parent 544930ff2d
commit 18b28c2e9d
2 changed files with 8 additions and 0 deletions

View file

@ -12,6 +12,7 @@
../../modules/server-cli.nix ../../modules/server-cli.nix
../../modules/sshd.nix ../../modules/sshd.nix
../../modules/k3s.nix ../../modules/k3s.nix
../../modules/qemu-guest.nix
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
]; ];

7
modules/qemu-guest.nix Normal file
View file

@ -0,0 +1,7 @@
{
...
}: {
services.qemuGuest.enable = true;
}