diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-03-01 15:33:43 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-01 15:33:43 +0100 |
commit | 4cd711d3abf51bfba9c4991eb22743c9c5dc3ca7 (patch) | |
tree | 45100a1885b68cbf73114983305e8b1bf7548a80 /apps/feed-nomath-org/integration.nix | |
parent | 6da52910c1af90938af722c09984c64e2545b248 (diff) |
feed-nomath-org: init
Diffstat (limited to 'apps/feed-nomath-org/integration.nix')
-rw-r--r-- | apps/feed-nomath-org/integration.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/feed-nomath-org/integration.nix b/apps/feed-nomath-org/integration.nix new file mode 100644 index 0000000..121890a --- /dev/null +++ b/apps/feed-nomath-org/integration.nix @@ -0,0 +1,7 @@ +{ appConfig, lib, ... }: { + port = 8080; + + bindMounts = builtins.listToAttrs + (map (name: lib.nameValuePair name { isReadOnly = true; }) + appConfig.repositories); +} |