Running docker is silly if I can't access it Change-Id: I476915dacd44fac1ce4c533a84849fa6175d8107 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2215 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
6 lines
119 B
Nix
6 lines
119 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
users.users.grfn.extraGroups = [ "docker" ];
|
|
}
|