summary refs log tree commit diff
path: root/lib/tests/modules/alias-with-priority.nix
diff options
context:
space:
mode:
author(cdep)illabout <cdep.illabout@gmail.com>2019-01-03 23:15:01 +0900
committer(cdep)illabout <cdep.illabout@gmail.com>2019-01-04 18:35:10 +0900
commitb81b3ad1b052aeb2edcf493167df7348b7bfb293 (patch)
treecbbd8cfdc23e362ab18763caea1c44808e2dd6ee /lib/tests/modules/alias-with-priority.nix
parentda00ec4b45f5cfc5b47825818b57db1d1950757d (diff)
downloadnixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.tar
nixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.tar.gz
nixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.tar.bz2
nixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.tar.lz
nixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.tar.xz
nixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.tar.zst
nixpkgs-b81b3ad1b052aeb2edcf493167df7348b7bfb293.zip
lib/modules: Add a function to create an option alias that respects the priority
This commit adds a function `mkAliasOptionModuleWithPriority`.  This
function will make an alias to an existing option and copy over the
priority.

This functionality is needed for PRs like #53041.  In that case
`nixos-generate-config` added an option to `hardware-configuration.nix`
with `mkDefault`.  That option was then changed and an alias created for
the old name.

The end user should be able to set the non-alias option in their
`configuration.nix` and have everything work correctly.  Without this
function, the priority for the option won't be copied over correctly
and the end-user will get a message saying they have the same option
set to two different values.
Diffstat (limited to 'lib/tests/modules/alias-with-priority.nix')
-rw-r--r--lib/tests/modules/alias-with-priority.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tests/modules/alias-with-priority.nix b/lib/tests/modules/alias-with-priority.nix
index ba25b527aa2..923483684cb 100644
--- a/lib/tests/modules/alias-with-priority.nix
+++ b/lib/tests/modules/alias-with-priority.nix
@@ -32,7 +32,7 @@ with lib;
 
   imports = [
     # Create an alias for the "enable" option.
-    (mkAliasOptionModule [ "enableAlias" ] [ "enable" ])
+    (mkAliasOptionModuleWithPriority [ "enableAlias" ] [ "enable" ])
 
     # Disable the aliased option, but with a default (low) priority so it
     # should be able to be overridden by the next import.