Set up podman and mail stack

This commit is contained in:
2020-05-11 19:08:09 +02:00
parent ce494aa7a2
commit 3eebf8e140
2 changed files with 20 additions and 1 deletions

View File

@@ -4,6 +4,15 @@
# Improve nix-shell and direnv integration
services.lorri.enable = true;
# Enable virtualization
# Enable virtualisation
virtualisation.libvirtd.enable = true;
# Set up podman
virtualisation = {
containers.users = [ "coolneng" ];
podman = {
enable = true;
dockerCompat = true;
};
};
}