diff options
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; + }; + }; +} |