mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
544ee3e4ed
Former-commit-id: d56f39275c
10 lines
207 B
Nix
10 lines
207 B
Nix
{ config, ... }:
|
|
let username = config.var.username;
|
|
in {
|
|
virtualisation.virtualbox.host = {
|
|
enable = true;
|
|
enableExtensionPack = true;
|
|
};
|
|
users.extraGroups.vboxusers.members = [ username ];
|
|
}
|