1
Fork 0
satellite/modules/common/toggles.nix
Matei Adriel 6aea9045c7
Set up passff in favour of browserpass
This also introduces a custom `satellite.toggles` module.
2023-11-13 04:03:14 +01:00

11 lines
294 B
Nix

{ lib, ... }:
{
options.satellite.toggles = lib.mkOption {
default = { };
description = "Record of custom toggles to use throughput the config";
type = lib.types.attrsOf (lib.types.submodule (name: {
options.enable = lib.mkEnableOption "Toggle for ${name}";
}));
};
}