Forgejo config changes #10

Merged
nrabulinski merged 7 commits from nrabulinski/forgejo-config-changes into main 2025-04-13 19:39:01 +02:00 AGit
Showing only changes of commit ad627694f2 - Show all commits

View file

@ -37,10 +37,10 @@
}; };
federation.ENABLED = true; federation.ENABLED = true;
}; };
repositoryRoot = "/storage-box/forgejo/repos"; repositoryRoot = "/forgejo/repos";
lfs = { lfs = {
enable = true; enable = true;
contentDir = "/storage-box/forgejo/lfs"; contentDir = "/forgejo/lfs";
}; };
}; };
@ -84,6 +84,15 @@
credentialsFile = config.age.secrets.rab-lol-cf.path; credentialsFile = config.age.secrets.rab-lol-cf.path;
email = "nikodem@rabulinski.com"; email = "nikodem@rabulinski.com";
}; };
fileSystems."/forgejo" = {
device = "/dev/disk/by-label/forgejo";
fsType = "btrfs";
options = [
"compress=zstd"
"noatime"
];
};
}; };
}; };
} }