[SECRETS] Now functional!

This commit is contained in:
Kat Inskip 2023-04-25 15:32:24 -07:00
parent aa266cc383
commit a1f1dee6a1
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
11 changed files with 274 additions and 19 deletions

View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: let
inherit (lib.types) listOf path;
inherit (lib.options) mkOption;
in {
options.scalpels = mkOption {
type = listOf path;
default = [];
};
}