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