Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Then, you can add a `nix` folder inside the same folder that holds your flake fi

Defines for which systems the project should be used and deployed on.

Default: it will load the `inputs.systems` flake input, first from the current flake, and then fallback to the blueprint one. (see <https://github.com/nix-systems/default>).
Default: it will load the `inputs.systems` flake input, first from the current flake, and then fallback to the blueprint one. (see <https://github.com/nix-systems/triplet>).

Type: list of `<arch>-<kernel>` strings.

Expand Down
10 changes: 5 additions & 5 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default";
systems.url = "github:nix-systems/triplet";
};

outputs =
Expand Down
2 changes: 1 addition & 1 deletion lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ in rec {
else
throw "${builtins.typeOf prefix} is not supported for the prefix";

# Make compatible with github:nix-systems/default
# Make compatible with github:nix-systems/triplet
systems = if lib.isList systems then systems else import systems;
};

Expand Down