about summary refs log tree commit diff
path: root/nixpkgs/lib/tests/modules/doRename-basic.nix
blob: 9d79fa4f26a3b9bb3a50f8371f95f2936c9cb4f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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;
  };
}