1
0
Fork 0

ooops, nixos cannot compute

master
Vladimir Serov 2020-07-14 03:04:45 +03:00 committed by Mikhail Klementev
parent bfc28be996
commit 3483763938
1 changed files with 4 additions and 2 deletions

View File

@ -34,8 +34,10 @@ in with lib; {
''; '';
}; };
users.users."${cfg.user}".packages = [ appvm ]; users.users."${cfg.user}" = {
users.users."${cfg.user}".extraGroups = [ "libvirtd" ]; packages = [ appvm ];
extraGroups = [ "libvirtd" ];
};
}; };