12 lines
301 B
Nix
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" ];
|
|
};
|
|
} |