mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
12 lines
356 B
Nix
12 lines
356 B
Nix
{ ... }: {
|
|
flake.nixosModules.hypervisor-sys-virtualization = { config, pkgs, ... }: {
|
|
virtualisation.libvirtd.enable = true;
|
|
programs.virt-manager.enable = true;
|
|
networking.firewall.trustedInterfaces = [ "virbr0" ];
|
|
environment.systemPackages = with pkgs; [
|
|
dnsmasq
|
|
];
|
|
users.users.mo.extraGroups = [ "libvirtd" ];
|
|
};
|
|
}
|