mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
17 lines
329 B
Nix
Executable File
17 lines
329 B
Nix
Executable File
{ lib, ... }:
|
|
|
|
let inherit (lib) mkOption types;
|
|
in rec {
|
|
mkOpt = type: default: mkOption { inherit type default; };
|
|
|
|
mkOpt' = type: default: description:
|
|
mkOption { inherit type default description; };
|
|
|
|
mkBoolOpt = default:
|
|
mkOption {
|
|
inherit default;
|
|
type = types.bool;
|
|
example = true;
|
|
};
|
|
}
|