this repo has no description

add podman

Signed-off-by: Marius Kimmina <mar.kimmina@gmail.com>

authored by Marius Kimmina and committed by tangled.org 9f75a182 1e9073e1

Changed files
+15
+15
configuration.nix
··· 18 18 }; 19 19 services.openssh.enable = true; 20 20 21 + virtualisation = { 22 + containers.enable = true; 23 + podman = { 24 + enable = true; 25 + dockerCompat = true; 26 + defaultNetwork.settings.dns_enabled = true; # Required for containers under podman-compose to be able to talk to each other. 27 + }; 28 + }; 29 + 21 30 environment.systemPackages = map lib.lowPrio [ 22 31 pkgs.curl 23 32 pkgs.gitMinimal ··· 28 37 [ 29 38 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuC5sHe8hegmrgEKntLTArMn/O6m8IOKHxtgAsHHcF1 mar.kimmina@gmail.com" 30 39 ]; 40 + 41 + users.users.root = { 42 + extraGroups = [ 43 + "podman" 44 + ]; 45 + }; 31 46 32 47 system.stateVersion = "24.05"; 33 48 }