Skip to content

Commit

Permalink
switch pcs to use podman instead of docker
Browse files Browse the repository at this point in the history
  • Loading branch information
ifd3f committed Apr 27, 2024
1 parent 371992f commit b465e7f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions nix/nixos-modules/astral/virt/docker.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ with lib; {

config = let cfg = config.astral.virt.docker;
in mkIf cfg.enable {
virtualisation.docker.enable = true;

# For raw, non-k8s docker
environment.systemPackages = with pkgs; [ docker-compose ];
virtualisation.podman.enable = true;
environment.systemPackages = with pkgs; [ podman-compose ];
};
}

0 comments on commit b465e7f

Please sign in to comment.