diff options
author | Vincent Ambo <mail@tazj.in> | 2023-03-09T09·14+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-09T09·17+0000 |
commit | 7126c01fd0f6209e198ed6106353addb293d6512 (patch) | |
tree | 4e7a4978de5523d6ecf84821b2db10db57afbacd /users | |
parent | 0b9467903b41261a00a3f9ec18ddb06f5ed1c236 (diff) |
chore(tazjin/nixos): enable docker on tverskoy for a talk r/5904
Change-Id: Ie5caa5648d34a4163e752f121edd8e828c922a77 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8232 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/nixos/tverskoy/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/tazjin/nixos/tverskoy/default.nix b/users/tazjin/nixos/tverskoy/default.nix index 51b3b781934e..0be37f20887d 100644 --- a/users/tazjin/nixos/tverskoy/default.nix +++ b/users/tazjin/nixos/tverskoy/default.nix @@ -48,7 +48,8 @@ lib.fix (self: { }; virtualisation.virtualbox.host.enable = true; - users.users.tazjin.extraGroups = [ "vboxusers" ]; + virtualisation.docker.enable = true; + users.users.tazjin.extraGroups = [ "docker" "vboxusers" ]; fileSystems = { "/" = { |