This commit is contained in:
2025-03-28 22:46:22 -04:00
parent a78b85b344
commit f06bbcbdad
15 changed files with 317 additions and 58 deletions

12
lib/module/default.nix Normal file
View File

@@ -0,0 +1,12 @@
{ lib, ... }:
let
inherit (lib) mkOption types;
in
rec {
mkOpt =
type: default: description:
mkOption { inherit type default description; };
mkBoolOpt = mkOpt types.bool;
}