Files
dotfiles/system-modules/virtualisation.nix
Lennart J. Kurzweg (Nx2) d2d1ce7830 overlays refactor
2025-06-17 19:48:31 +02:00

12 lines
301 B
Nix

{ pkgs, ... }@all: with all;
{
config = lib.mkIf (hyper.host == "NxNORTH") {
environment.systemPackages = with pkgs; [
virtiofsd
];
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
users.users."${hyper.user}".extraGroups = [ "libvirtd" ];
};
}