Skip to content

Commit

Permalink
2024/07/01-13:50:39
Browse files Browse the repository at this point in the history
  • Loading branch information
1nv0k32 committed Jul 1, 2024
1 parent a40fe8a commit 83de6b5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ with lib;
virtualisation = {
podman = {
enable = mkDefault true;
dockerCompat = mkDefault false;
dockerCompat = mkDefault true;
defaultNetwork.settings.dns_enabled = mkDefault true;
};
docker.enable = true;
docker.enable = mkDefault false;
};

nixpkgs = {
Expand Down
10 changes: 6 additions & 4 deletions system/wsl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,12 @@ with lib;
nix-ld.enable = true;
};

virtualisation.docker.daemon.settings = {
iptables = false;
ipv6 = false;
};
virtualisation.docker = {
enable = true;
daemon.settings = {
iptables = false;
ipv6 = false;
};
}

# vim:expandtab ts=2 sw=2

0 comments on commit 83de6b5

Please sign in to comment.