dotfiles/os/dev/default.nix

8 lines
179 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.frogeye.dev.docker {
virtualisation.docker.enable = true;
users.users.geoffrey.extraGroups = [ "docker" ];
};
}