dotfiles/nixos/boxes/bolty/home-assistant.nix

18 lines
344 B
Nix
Raw Normal View History

{ config, pkgs, inputs, lib, ... }:
let port = 8123;
in {
2022-08-28 08:28:54 +01:00
imports = [ ];
networking.firewall.allowedTCPPorts = [ port ];
boot.kernelModules = [ "kvm_amd" ];
virtualisation = {
libvirtd = {
enable = true;
qemu.ovmf.enable = true;
2022-08-28 08:28:54 +01:00
};
};
environment.systemPackages = with pkgs; [ qemu virt-manager usbutils ];
2022-08-28 08:28:54 +01:00
}