modules/website: add options for direcory ownership

This commit is contained in:
teutat3s 2025-04-15 23:06:01 +02:00
parent ab26776832
commit 12a201abdc
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -20,6 +20,14 @@
types.path
];
};
directoryOwner = mkOption {
description = "Owner of directory for static files";
type = types.str;
};
directoryGroup = mkOption {
description = "Group of directory for static files";
type = types.str;
};
};
config = lib.mkIf config.momo-cloud.static-website.enable {