homelab/nixos/hosts/forgejo/storage.nix
plasmagoat acc0dac234
Some checks failed
Test / tests (push) Has been cancelled
/ OpenTofu (push) Failing after 13s
tofu workflow
2025-07-21 22:33:04 +02:00

15 lines
328 B
Nix

{
boot.supportedFilesystems = ["nfs"];
services.rpcbind.enable = true;
fileSystems."/srv/forgejo" = {
device = "192.168.1.226:/volume1/data/forgejo";
fsType = "nfs4";
options = ["x-systemd.automount" "noatime" "_netdev"];
};
systemd.tmpfiles.rules = [
"d /srv/forgejo 0750 forgejo forgejo -"
];
}