nix-dotfiles/lib/options.nix
Reid "reidlab 565aac949c uhhh
uhhh the 2nd rendition
2024-04-02 18:40:14 -07:00

7 lines
202 B
Nix

{lib, ...}: let
inherit (lib.options) mkOption;
in {
mkOpt = type: default: mkOption {inherit type default;};
mkOpt' = type: default: description: mkOption {inherit type default description;};
}