mirror of
https://github.com/RGBCube/ncc
synced 2025-07-28 18:47:44 +00:00
12 lines
189 B
Nix
12 lines
189 B
Nix
_: _: super: let
|
|
inherit (super) mkOption;
|
|
in {
|
|
mkConst = value: mkOption {
|
|
default = value;
|
|
readOnly = true;
|
|
};
|
|
|
|
mkValue = default: mkOption {
|
|
inherit default;
|
|
};
|
|
}
|