fix docker.nix

This commit is contained in:
Sridhar Ratnakumar 2023-02-26 14:57:17 -05:00
parent 3232c6fc34
commit 3da3a4be57

View file

@ -1,7 +1,7 @@
{ pkgs, config, ... }: {
{ pkgs, config, flake, ... }: {
virtualisation.docker.enable = true;
users.users.${config.people.myself} = {
users.users.${flake.config.people.myself} = {
extraGroups = [ "docker" ];
};
}