snix/users/glittershark/system/system/modules/development.nix
Griffin Smith 0e4d60cb9a feat(gs/system): Add me to the docker group
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
2020-12-01 17:17:13 +00:00

6 lines
119 B
Nix

{ config, lib, pkgs, ... }:
{
virtualisation.docker.enable = true;
users.users.grfn.extraGroups = [ "docker" ];
}