15 lines
210 B
Nix
15 lines
210 B
Nix
{ pkgs, lib, config, ... }:
|
|
let
|
|
inherit (lib)
|
|
fileContents
|
|
mkOption
|
|
;
|
|
in {
|
|
options.my.secrets = let inherit (lib) types; in mkOption {
|
|
type = types.attrs;
|
|
};
|
|
|
|
config.my.secrets = {
|
|
};
|
|
}
|