NixOS Proxmox LXC Not rebuilding using wiki provided configuration

More reading:

trying to deploy NixOS onto Proxmox as an LXC using this guide

Not sure if expected or not, it seems that when building as mentioned in the guide, the container doesn’t carry the “base” config from the build OR doesn’t have permission to access that base config (which is on the host).
So when running nixos-rebuild, it’s missing that “base” config / can’t access it.

Workarounds mentioned in posts above are suggesting to:

I’m using lxc with lxd and haven’t encountered such issue(s) so far.
That’s how I’m currently creating nixos image for lxc, possibly try with a very minimal configuration.nix:

Something like that:

{ config, pkgs, ... }:

{
  boot.isContainer = true;

  system.stateVersion = "24.05";

  # add some config below
}