dot.nix/hosts/global/common/docker.nix
Chris Toph 3523b82392 Configuration Cleanup
- Removed inaccurate comments
- Refactored browsers to independent nixes
- Small code changes for clarity
2025-05-29 15:25:49 -04:00

14 lines
236 B
Nix

{ pkgs, ... }:
{
virtualisation = {
docker = {
enable = true;
autoPrune.enable = true;
};
oci-containers.backend = "docker";
};
environment.systemPackages = with pkgs; [
lazydocker # Simple TUI
];
}