Files
dotfiles/system-modules/virtualisation.nix
Lennart J. Kurzweg (Nx2) b4586e8661 chmod
2025-01-27 22:17:00 +01: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" ];
};
}