Files
dotfiles/system-modules/virtualisation.nix
Lennart J. Kurzweg (Nx2) 93c6fcbd71 virt only on North
2024-04-26 16:14:06 +02:00

12 lines
300 B
Nix

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