mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-07 02:06:34 +05:30
16 lines
211 B
Nix
Executable File
16 lines
211 B
Nix
Executable File
{
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: {
|
|
virtualisation = {
|
|
libvirtd.enable = true;
|
|
};
|
|
|
|
users.users.${username}.extraGroups = ["libvirtd"];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
virt-manager
|
|
];
|
|
}
|