summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/doRename-basic.nix
blob: 9de48aa44cfccbe9fbb9510236beb79a319eba55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, ... }:
{
  imports = [
    (lib.doRename {
      from = [
        "a"
        "b"
      ];
      to = [
        "c"
        "d"
        "e"
      ];
      warn = true;
      use = x: x;
      visible = true;
    })
  ];
  options = {
    c.d.e = lib.mkOption { };
  };
  config = {
    a.b = 1234;
  };
}