init podman configs

This commit is contained in:
makefu 2024-07-24 22:11:46 +02:00
parent 8bc829de82
commit 604ead2ee0
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
2 changed files with 24 additions and 4 deletions
2configs

View file

@ -1,4 +0,0 @@
{lib,... }:
{
sound.enable = lib.mkForce false;
}

View file

@ -0,0 +1,24 @@
{ pkgs, config, ... }:
{
virtualisation.oci-containers.backend = "podman";
virtualisation.podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
# storageDriver = "devicemapper";
};
#networking.nat = {
# enable = true;
# internalInterfaces = [ "ve-+" ];
# externalInterface = "enp2s0";
#};
environment.systemPackages = with pkgs;[
podman
podman-tui
podman-compose
];
users.users.${config.krebs.build.user.name}.extraGroups = [ "podman" ];
}