Fix podman exec.

This commit is contained in:
Gabriel Ebner 2022-04-30 13:29:44 +02:00
parent cb1548edb0
commit a9fa48daee

@ -45,6 +45,12 @@
dockerCompat = true; dockerCompat = true;
}; };
virtualisation.containers.containersConf.settings = {
engine = {
cgroup_manager = "cgroupfs";
};
};
virtualisation.containers = { virtualisation.containers = {
registries.search = [ "docker.io" ]; registries.search = [ "docker.io" ];
}; };
@ -103,7 +109,7 @@
"wireshark" "wireshark"
]; ];
# shell = "${pkgs.zsh}/bin/zsh"; # shell = "${pkgs.zsh}/bin/zsh";
shell = "/run/current-system/sw/bin/fish"; shell = "fish";
password = if config.virtualisation != null then "" else null; password = if config.virtualisation != null then "" else null;
}; };