aboutsummaryrefslogtreecommitdiffstats
path: root/apps/feed-nomath-org/appspec.nix
blob: 6d3bb2b798f35987d6f76cf791f3fbbc6f36ea35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
    };
  };
}