infrastructure/nixos/ct/proxmox/filesystem.nix
2025-09-06 23:05:37 -07:00

8 lines
202 B
Nix

_: {
# work around a filesystem issue when migrating an unprivileged container to privileged
boot.postBootCommands = ''
if [[ $(stat -c '%u' /) != 0 ]]; then
chown 0:0 / /*
fi
'';
}