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/appspec.nix | |
parent | 6da52910c1af90938af722c09984c64e2545b248 (diff) |
feed-nomath-org: init
Diffstat (limited to 'apps/feed-nomath-org/appspec.nix')
-rw-r--r-- | apps/feed-nomath-org/appspec.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/feed-nomath-org/appspec.nix b/apps/feed-nomath-org/appspec.nix new file mode 100644 index 0000000..6d3bb2b --- /dev/null +++ b/apps/feed-nomath-org/appspec.nix @@ -0,0 +1,13 @@ +{ fysilib, lib, ... }: { + description = "feed.nomath.org website"; + endOfLife = null; + options = { + domain = lib.mkOption { + description = "Domain of the website"; + type = fysilib.types.fqdn; + }; + repositories = lib.mkOption { + type = lib.types.listOf lib.types.str; + }; + }; +} |