update todo

This commit is contained in:
Hadi
2025-02-18 23:40:07 +01:00
parent 7aa07cde8e
commit d56f39275c
11 changed files with 188 additions and 419 deletions

9
nixos/virtualbox.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, ... }:
let username = config.var.username;
in {
virtualisation.virtualbox.host = {
enable = true;
enableExtensionPack = true;
};
users.extraGroups.vboxusers.members = [ username ];
}