Compare commits
3 commits
5abe4e929e
...
6eb3942270
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | 6eb3942270 | ||
Bruno BELANYI | 2232062fd9 | ||
Bruno BELANYI | d6e9f9786d |
|
@ -46,6 +46,7 @@ in
|
||||||
https-everywhere
|
https-everywhere
|
||||||
i-dont-care-about-cookies
|
i-dont-care-about-cookies
|
||||||
reddit-enhancement-suite
|
reddit-enhancement-suite
|
||||||
|
sponsorblock
|
||||||
ublock-origin
|
ublock-origin
|
||||||
]
|
]
|
||||||
++ lib.optional (cfg.tridactyl.enable) tridactyl
|
++ lib.optional (cfg.tridactyl.enable) tridactyl
|
||||||
|
|
|
@ -14,7 +14,15 @@ let
|
||||||
in
|
in
|
||||||
throwOnCanary {
|
throwOnCanary {
|
||||||
options.my.secrets = mkOption {
|
options.my.secrets = mkOption {
|
||||||
type = types.attrs;
|
type =
|
||||||
|
let
|
||||||
|
valueType = with types; oneOf [
|
||||||
|
int
|
||||||
|
str
|
||||||
|
(attrsOf valueType)
|
||||||
|
];
|
||||||
|
in
|
||||||
|
valueType;
|
||||||
};
|
};
|
||||||
|
|
||||||
config.my.secrets = {
|
config.my.secrets = {
|
||||||
|
|
|
@ -14,7 +14,15 @@ let
|
||||||
in
|
in
|
||||||
throwOnCanary {
|
throwOnCanary {
|
||||||
options.my.secrets = mkOption {
|
options.my.secrets = mkOption {
|
||||||
type = types.attrs;
|
type =
|
||||||
|
let
|
||||||
|
valueType = with types; oneOf [
|
||||||
|
int
|
||||||
|
str
|
||||||
|
(attrsOf valueType)
|
||||||
|
];
|
||||||
|
in
|
||||||
|
valueType;
|
||||||
};
|
};
|
||||||
|
|
||||||
config.my.secrets = {
|
config.my.secrets = {
|
||||||
|
|
Loading…
Reference in a new issue