fix: name clash nix
This commit is contained in:
parent
93b71cbbc5
commit
93c533b13e
1 changed files with 3 additions and 2 deletions
|
|
@ -7,7 +7,8 @@
|
|||
outputs = { nixpkgs, nix, self }:
|
||||
let pkgs = import nixpkgs { system = "x86_64-linux"; }; in {
|
||||
packages.x86_64-linux = rec {
|
||||
default = nix;
|
||||
default = nix-with-tools;
|
||||
|
||||
minimal-nix = import (nix + "/docker.nix") {
|
||||
inherit pkgs;
|
||||
extraPkgs = [ pkgs.nodejs ];
|
||||
|
|
@ -20,7 +21,7 @@
|
|||
"org.opencontainers.image.description" = "Nix container image with nodejs";
|
||||
};
|
||||
};
|
||||
nix = import (nix + "/docker.nix") {
|
||||
nix-with-tools = import (nix + "/docker.nix") {
|
||||
inherit pkgs;
|
||||
extraPkgs = [ pkgs.nodejs pkgs.skopeo ];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue