Created
February 29, 2024 21:25
-
-
Save b-/5a9fdbc1c7365103474a9033a618dd88 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(stack trace truncated; use '--show-trace' to show the full trace) | |
error: The option `nix.registry.nixpkgs.to.path' has conflicting definition values: | |
- In `/nix/store/cbbsvzjcqvzlylq9s7p6d2gyxh64q88p-source/nixos/modules/config/nix-flakes.nix': "/nix/store/sssy7p3frs3vrr7ymcp7y016ykl1si7d-source" | |
- In `/nix/store/cbbsvzjcqvzlylq9s7p6d2gyxh64q88p-source/nixos/modules/misc/nixpkgs-flake.nix': "/nix/store/cbbsvzjcqvzlylq9s7p6d2gyxh64q88p-source" | |
Use `lib.mkForce value` or `lib.mkDefault value` to change the priority on any of these definitions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Manages the flake registry. | |
See also | |
- ./nix.nix | |
- ./nix-channel.nix | |
*/ | |
{ config, lib, ... }: | |
let | |
inherit (lib) | |
filterAttrs | |
literalExpression | |
mapAttrsToList | |
mkDefault | |
mkIf | |
mkOption | |
types | |
; | |
cfg = config.nix; | |
in | |
{ | |
options = { | |
nix = { | |
registry = mkOption { | |
type = types.attrsOf (types.submodule ( | |
let | |
referenceAttrs = with types; attrsOf (oneOf [ | |
str | |
int | |
bool | |
path | |
package | |
]); | |
in | |
{ config, name, ... }: | |
{ | |
options = { | |
from = mkOption { | |
type = referenceAttrs; | |
example = { type = "indirect"; id = "nixpkgs"; }; | |
description = lib.mdDoc "The flake reference to be rewritten."; | |
}; | |
to = mkOption { | |
type = referenceAttrs; | |
example = { type = "github"; owner = "my-org"; repo = "my-nixpkgs"; }; | |
description = lib.mdDoc "The flake reference {option}`from` is rewritten to."; | |
}; | |
flake = mkOption { | |
type = types.nullOr types.attrs; | |
default = null; | |
example = literalExpression "nixpkgs"; | |
description = lib.mdDoc '' | |
The flake input {option}`from` is rewritten to. | |
''; | |
}; | |
exact = mkOption { | |
type = types.bool; | |
default = true; | |
description = lib.mdDoc '' | |
Whether the {option}`from` reference needs to match exactly. If set, | |
a {option}`from` reference like `nixpkgs` does not | |
match with a reference like `nixpkgs/nixos-20.03`. | |
''; | |
}; | |
}; | |
config = { | |
from = mkDefault { type = "indirect"; id = name; }; | |
to = mkIf (config.flake != null) (mkDefault ( | |
{ | |
type = "path"; | |
path = config.flake.outPath; | |
} // filterAttrs | |
(n: _: n == "lastModified" || n == "rev" || n == "revCount" || n == "narHash") | |
config.flake | |
)); | |
}; | |
} | |
)); | |
default = { }; | |
description = lib.mdDoc '' | |
A system-wide flake registry. | |
''; | |
}; | |
}; | |
}; | |
config = mkIf cfg.enable { | |
environment.etc."nix/registry.json".text = builtins.toJSON { | |
version = 2; | |
flakes = mapAttrsToList (n: v: { inherit (v) from to exact; }) cfg.registry; | |
}; | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, options, lib, pkgs, ... }: | |
with lib; | |
let | |
cfg = config.nixpkgs.flake; | |
in | |
{ | |
options.nixpkgs.flake = { | |
source = mkOption { | |
# In newer Nix versions, particularly with lazy trees, outPath of | |
# flakes becomes a Nix-language path object. We deliberately allow this | |
# to gracefully come through the interface in discussion with @roberth. | |
# | |
# See: https://github.com/NixOS/nixpkgs/pull/278522#discussion_r1460292639 | |
type = types.nullOr (types.either types.str types.path); | |
default = null; | |
defaultText = "if (using nixpkgsFlake.lib.nixosSystem) then self.outPath else null"; | |
example = ''builtins.fetchTarball { name = "source"; sha256 = "${lib.fakeHash}"; url = "https://github.com/nixos/nixpkgs/archive/somecommit.tar.gz"; }''; | |
description = mdDoc '' | |
The path to the nixpkgs sources used to build the system. This is automatically set up to be | |
the store path of the nixpkgs flake used to build the system if using | |
`nixpkgs.lib.nixosSystem`, and is otherwise null by default. | |
This can also be optionally set if the NixOS system is not built with a flake but still uses | |
pinned sources: set this to the store path for the nixpkgs sources used to build the system, | |
as may be obtained by `builtins.fetchTarball`, for example. | |
Note: the name of the store path must be "source" due to | |
<https://github.com/NixOS/nix/issues/7075>. | |
''; | |
}; | |
setNixPath = mkOption { | |
type = types.bool; | |
default = cfg.source != null; | |
defaultText = "config.nixpkgs.flake.source != null"; | |
description = mdDoc '' | |
Whether to set {env}`NIX_PATH` to include `nixpkgs=flake:nixpkgs` such that `<nixpkgs>` | |
lookups receive the version of nixpkgs that the system was built with, in concert with | |
{option}`nixpkgs.flake.setFlakeRegistry`. | |
This is on by default for NixOS configurations built with flakes. | |
This makes {command}`nix-build '<nixpkgs>' -A hello` work out of the box on flake systems. | |
Note that this option makes the NixOS closure depend on the nixpkgs sources, which may add | |
undesired closure size if the system will not have any nix commands run on it. | |
''; | |
}; | |
setFlakeRegistry = mkOption { | |
type = types.bool; | |
default = cfg.source != null; | |
defaultText = "config.nixpkgs.flake.source != null"; | |
description = mdDoc '' | |
Whether to pin nixpkgs in the system-wide flake registry (`/etc/nix/registry.json`) to the | |
store path of the sources of nixpkgs used to build the NixOS system. | |
This is on by default for NixOS configurations built with flakes. | |
This option makes {command}`nix run nixpkgs#hello` reuse dependencies from the system, avoid | |
refetching nixpkgs, and have a consistent result every time. | |
Note that this option makes the NixOS closure depend on the nixpkgs sources, which may add | |
undesired closure size if the system will not have any nix commands run on it. | |
''; | |
}; | |
}; | |
config = mkIf (cfg.source != null) (mkMerge [ | |
{ | |
assertions = [ | |
{ | |
assertion = cfg.setNixPath -> cfg.setFlakeRegistry; | |
message = '' | |
Setting `nixpkgs.flake.setNixPath` requires that `nixpkgs.flake.setFlakeRegistry` also | |
be set, since it is implemented in terms of indirection through the flake registry. | |
''; | |
} | |
]; | |
} | |
(mkIf cfg.setFlakeRegistry { | |
nix.registry.nixpkgs.to = mkDefault { | |
type = "path"; | |
path = cfg.source; | |
}; | |
}) | |
(mkIf cfg.setNixPath { | |
# N.B. This does not include nixos-config in NIX_PATH unlike modules/config/nix-channel.nix | |
# because we would need some kind of evil shim taking the *calling* flake's self path, | |
# perhaps, to ever make that work (in order to know where the Nix expr for the system came | |
# from and how to call it). | |
nix.nixPath = mkDefault ([ "nixpkgs=flake:nixpkgs" ] | |
++ optional config.nix.channel.enable "/nix/var/nix/profiles/per-user/root/channels"); | |
}) | |
]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment