init podman configs
This commit is contained in:
parent
8bc829de82
commit
604ead2ee0
2configs
|
@ -1,4 +0,0 @@
|
|||
{lib,... }:
|
||||
{
|
||||
sound.enable = lib.mkForce false;
|
||||
}
|
24
2configs/virtualisation/podman.nix
Normal file
24
2configs/virtualisation/podman.nix
Normal 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" ];
|
||||
}
|
Loading…
Reference in a new issue