summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/declare-coerced-value-no-default.nix
blob: cc929f9585b6f42cabdcd4b5720259685e0fe9e0 (plain)
1
2
3
4
5
6
7
8
9
{ lib, ... }:

{
  options = {
    value = lib.mkOption {
      type = lib.types.coercedTo lib.types.int toString lib.types.str;
    };
  };
}