mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
15 lines
205 B
Nix
15 lines
205 B
Nix
{ NAME }: { ... }: {
|
|
virtualisation = {
|
|
libvirtd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
users = {
|
|
users = {
|
|
"${NAME}" = {
|
|
extraGroups = [ "kvm" "libvirtd" ];
|
|
};
|
|
};
|
|
};
|
|
}
|