mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
profiles/dev: replace Docker with Podman
This commit is contained in:
parent
82dfc13a58
commit
22e07b8fa4
@ -132,13 +132,18 @@ in {
|
|||||||
virt-manager # An interface for those who are lazy to read a reference manual and create a 1000-line configuration per machine.
|
virt-manager # An interface for those who are lazy to read a reference manual and create a 1000-line configuration per machine.
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable Docker just as my main container runtime or something.
|
# Podman with Docker compatibility which is not 100% but still better
|
||||||
virtualisation.docker = {
|
# than nothing.
|
||||||
|
virtualisation.podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
dockerCompat = true;
|
||||||
autoPrune = {
|
autoPrune = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dates = "weekly";
|
dates = "weekly";
|
||||||
};
|
};
|
||||||
|
defaultNetwork.settings = {
|
||||||
|
dns_enabled = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable usual containers configuration.
|
# Enable usual containers configuration.
|
||||||
|
Loading…
Reference in New Issue
Block a user