add auth & grafana + guest agent

This commit is contained in:
asyncnomi 2025-07-20 20:50:09 +02:00
parent 2a1864bcb1
commit 3e857b2afc
2 changed files with 41 additions and 1 deletions

View file

@ -8,7 +8,9 @@ in
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
(modulesPath + "/virtualisation/qemu-guest-agent.nix")
];
services.qemuGuest.enable = true;
fileSystems = myNode.fileSystems;
@ -16,5 +18,5 @@ in
boot.loader.grub.enable = true;
boot.loader.grub.device = myNode.grubDevice;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
nixpkgs.hostPlatform = lib.mkDefault myNode.system;
}