Add qemu guest agent to all VMs

This commit is contained in:
2024-12-05 18:35:06 +01:00
parent b06aa943cc
commit 02ef7e861b
9 changed files with 66 additions and 28 deletions

View File

@@ -1,14 +1,19 @@
{ config, lib, pkgs, ... }:
{
config,
lib,
pkgs,
...
}:
{
imports =
[
../template/hardware-configuration.nix
imports = [
../template/hardware-configuration.nix
../../system
../../services/ns/secondary-authorative.nix
../../services/ns/resolver.nix
];
../../system
../../services/ns/secondary-authorative.nix
../../services/ns/resolver.nix
../../common/vm
];
nixpkgs.config.allowUnfree = true;
# Use the systemd-boot EFI boot loader.
@@ -38,7 +43,10 @@
};
time.timeZone = "Europe/Oslo";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
environment.systemPackages = with pkgs; [
vim
wget
@@ -53,4 +61,3 @@
system.stateVersion = "23.11"; # Did you read the comment?
}