nixos-configs/modules/docker/.template/compose.nix

11 lines
200 B
Nix
Raw Normal View History

2024-02-28 16:59:34 -05:00
{config, ...}: let
inherit (config.sops) secrets;
2024-07-24 15:49:31 -04:00
inherit (config.khepri) rwDataDir;
2024-02-28 16:59:34 -05:00
rwPath = rwDataDir + "/projectName";
in {
2024-07-24 15:49:31 -04:00
khepri.compositions."projectName" = {
services = {};
2024-02-28 16:59:34 -05:00
};
}