sneeuwvlok/clanServices/peristance/default.nix
Chris Kruining cc86b0a815
checkpoint
2026-03-31 15:43:34 +02:00

24 lines
497 B
Nix

{...}: {
_class = "clan.service";
manifest = {
name = "arda/persistance";
description = ''
Configuration of persistance resrouce(s)
(for now this means a database. and specifically it means postgres)
'';
categories = [ "Service", "Peristance" ];
readme = builtins.readFile ./README.md
};
roles.default = {
description = '''';
interface = {...}: {
options = {};
};
perInstance = {...}: {
nixosModule = {...}: {};
};
};
}