Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8c912d4e471e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e718eb624301
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Jun 5, 2019

  1. module system: prettify a bit error when unique option defined twice

    The error can be reproduced like:
    ```
    $ nix-instantiate ./nixos -A system --arg configuration '
      { fileSystems."/".device = "nodev";
        boot.loader.grub.devices = [ "nodev" ];
        containers.t.config.imports = [ <nixpkgs/nixos/modules/virtualisation/amazon-image.nix> ];
      }'
    ```
    
    Previously error was:
    ```
    error: The unique option `containers.t.networking.hostName' is defined multiple times, in `/nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/virtualisation/amazon-image.nix' and `module at /home/danbst/dev/nixpkgs/nixos/modules/virtualisation/containers.nix:470'.
    (use '--show-trace' to show detailed location information)
    ```
    
    Now it is:
    ```
    error: The unique option `containers.t.networking.hostName' is defined multiple times, in:
     - /nix/var/nix/profiles/per-user/root/channels/nixpkgs/nixos/modules/virtualisation/amazon-image.nix
     - module at /home/danbst/dev/nixpkgs/nixos/modules/virtualisation/containers.nix:470.
    (use '--show-trace' to show detailed location information)
    ```
    
    Related: #15747
    danbst committed Jun 5, 2019
    Copy the full SHA
    bfb6ef1 View commit details
  2. nixos/containers: give a name to an anonymous container module

    See #15747. Previously this module was called `<unknown-file>`
    in error messages, now it is called a bit more close to real:
    ```
    module at /home/danbst/dev/nixpkgs/nixos/modules/virtualisation/containers.nix:470
    ```
    danbst committed Jun 5, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f7940bb View commit details

Commits on Jun 13, 2019

  1. Merge pull request #62712 from danbst/module-conflict-naming

    NixOS module system: improve one of error messages
    danbst authored Jun 13, 2019
    Copy the full SHA
    e718eb6 View commit details
Showing with 19 additions and 15 deletions.
  1. +1 −1 lib/options.nix
  2. +18 −14 nixos/modules/virtualisation/containers.nix
2 changes: 1 addition & 1 deletion lib/options.nix
Original file line number Diff line number Diff line change
@@ -101,7 +101,7 @@ rec {
mergeOneOption = loc: defs:
if defs == [] then abort "This case should never happen."
else if length defs != 1 then
throw "The unique option `${showOption loc}' is defined multiple times, in ${showFiles (getFiles defs)}."
throw "The unique option `${showOption loc}' is defined multiple times, in:\n - ${concatStringsSep "\n - " (getFiles defs)}."
else (head defs).value;

/* "Merge" option definitions by checking that they all have the same value. */
32 changes: 18 additions & 14 deletions nixos/modules/virtualisation/containers.nix
Original file line number Diff line number Diff line change
@@ -465,20 +465,24 @@ in
merge = loc: defs: (import ../../lib/eval-config.nix {
inherit system;
modules =
let extraConfig =
{ boot.isContainer = true;
networking.hostName = mkDefault name;
networking.useDHCP = false;
assertions = [
{
assertion = config.privateNetwork -> stringLength name < 12;
message = ''
Container name `${name}` is too long: When `privateNetwork` is enabled, container names can
not be longer than 11 characters, because the container's interface name is derived from it.
This might be fixed in the future. See https://github.com/NixOS/nixpkgs/issues/38509
'';
}
];
let
extraConfig = {
_file = "module at ${__curPos.file}:${toString __curPos.line}";
config = {
boot.isContainer = true;
networking.hostName = mkDefault name;
networking.useDHCP = false;
assertions = [
{
assertion = config.privateNetwork -> stringLength name < 12;
message = ''
Container name `${name}` is too long: When `privateNetwork` is enabled, container names can
not be longer than 11 characters, because the container's interface name is derived from it.
This might be fixed in the future. See https://github.com/NixOS/nixpkgs/issues/38509
'';
}
];
};
};
in [ extraConfig ] ++ (map (x: x.value) defs);
prefix = [ "containers" name ];