8 lines
179 B
Nix
8 lines
179 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
config = lib.mkIf config.frogeye.dev.docker {
|
|
virtualisation.docker.enable = true;
|
|
users.users.geoffrey.extraGroups = [ "docker" ];
|
|
};
|
|
}
|