homepage: Allow an URL for categories

This commit is contained in:
Geoffrey Frogeye 2025-02-02 23:22:18 +01:00
parent 7ca1e0576b
commit 49b8dd0b5e
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
3 changed files with 11 additions and 7 deletions

View file

@ -73,6 +73,10 @@ in
type = lib.types.nullOr lib.types.path;
default = null;
};
url = lib.mkOption {
type = lib.types.str;
default = "about:blank";
};
links = lib.mkOption {
default = [ ];
type = lib.types.listOf (
@ -102,6 +106,5 @@ in
)
);
};
};
}