alpine: loki fixes

This commit is contained in:
Tristan 2025-08-04 21:39:05 +01:00
parent 76306f2caf
commit b5f1220ea9
4 changed files with 71 additions and 62 deletions

13
nixos/services/nfs.nix Normal file
View file

@ -0,0 +1,13 @@
{config, ...}: {
services.nfs = {
settings = {
mountd.manage-gids = true;
};
server = {
enable = true;
exports = ''
/mnt/storage/media 100.106.241.122/8(rw,fsid=root)
'';
};
};
}