How to make Podman Desktop work?

Running podman-desktop keeps initializing forever:

APPIMAGE env is not defined, current application is not an AppImage
checkForUpdatesAndNotify called, downloadPromise is null
Kubeconfig path /home/bitscoper/.kube/config provided does not exist. Skipping.
(node:3355) UnhandledPromiseRejectionWarning: TypeError: Cannot read properties of undefined (reading 'endsWith')
    at /nix/store/qpyy04y9ww0ycs3b7mcrxj2fqi83vbxy-podman-desktop-0.12.0/share/lib/podman-desktop/resources/app.asar/packages/main/dist/index-ffba744f.cjs:37699:43
    at Array.forEach (<anonymous>)
    at ExtensionLoader.loadRuntime (/nix/store/qpyy04y9ww0ycs3b7mcrxj2fqi83vbxy-podman-desktop-0.12.0/share/lib/podman-desktop/resources/app.asar/packages/main/dist/index-ffba744f.cjs:37696:32)
    at ExtensionLoader.loadExtension (/nix/store/qpyy04y9ww0ycs3b7mcrxj2fqi83vbxy-podman-desktop-0.12.0/share/lib/podman-desktop/resources/app.asar/packages/main/dist/index-ffba744f.cjs:37507:26)
    at async Promise.all (index 0)
    at async ExtensionLoader.start (/nix/store/qpyy04y9ww0ycs3b7mcrxj2fqi83vbxy-podman-desktop-0.12.0/share/lib/podman-desktop/resources/app.asar/packages/main/dist/index-ffba744f.cjs:37442:5)
    at async PluginSystem.initExtensions (/nix/store/qpyy04y9ww0ycs3b7mcrxj2fqi83vbxy-podman-desktop-0.12.0/share/lib/podman-desktop/resources/app.asar/packages/main/dist/index-ffba744f.cjs:77929:5)
    at async /nix/store/qpyy04y9ww0ycs3b7mcrxj2fqi83vbxy-podman-desktop-0.12.0/share/lib/podman-desktop/resources/app.asar/packages/main/dist/index-ffba744f.cjs:78172:29
(Use `electron --trace-warnings ...` to show where the warning was created)
(node:3355) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
PluginSystem: received dom-ready event from the UI

Related part of my configuration.nix:

  virtualisation = {
    containers.enable = true;
    podman = {
      enable = true;
      dockerCompat = true;
      defaultNetwork.settings.dns_enabled = true;
    };
  };

How can I fix this?