mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
22 lines
603 B
Nix
22 lines
603 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable common container config files in /etc/containers
|
|
# virtualisation.containers.enable = true;
|
|
# virtualisation = {
|
|
# podman = {
|
|
# enable = true;
|
|
# dockerSocket.enable = true;
|
|
# dockerCompat = true;
|
|
# defaultNetwork.settings.dns_enabled = true;
|
|
# };
|
|
# };
|
|
#
|
|
# # Useful other development tools
|
|
# environment.systemPackages = with pkgs; [
|
|
# dive # look into docker image layers
|
|
# podman-tui # status of containers in the terminal
|
|
# docker-compose # start group of containers for dev
|
|
# ];
|
|
virtualisation.docker.enable = true;
|
|
}
|