summary refs log tree commit diff
path: root/lib/tests/modules/declare-coerced-value-unsound.nix
blob: 7a017f24e77d493ee81750aa3428ece56b5260cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, ... }:

{
  options = {
    value = lib.mkOption {
      default = "12";
      type = lib.types.coercedTo lib.types.str lib.toInt lib.types.ints.s8;
    };
  };
}