- Removed inaccurate comments - Refactored browsers to independent nixes - Small code changes for clarity
14 lines
236 B
Nix
14 lines
236 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
};
|
|
oci-containers.backend = "docker";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
lazydocker # Simple TUI
|
|
];
|
|
}
|