mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-31 23:46:48 +02:00
11 lines
172 B
Nix
11 lines
172 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
value = lib.mkOption {
|
||
|
default = 42;
|
||
|
type = lib.types.coercedTo lib.types.int builtins.toString lib.types.str;
|
||
|
};
|
||
|
};
|
||
|
}
|