mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 09:02:30 +08:00
Correct pkgs call
This commit is contained in:
parent
a6570d33a6
commit
63641a7b17
1 changed files with 2 additions and 2 deletions
|
@ -91,8 +91,8 @@
|
|||
headscale-docker = pkgs.dockerTools.buildLayeredImage {
|
||||
name = "headscale";
|
||||
tag = "latest";
|
||||
contents = [ pkgs.${system}.headscale ];
|
||||
config.Entrypoint = [ (pkgs.${system}.headscale + "/bin/headscale") ];
|
||||
contents = [ pkgs.headscale ];
|
||||
config.Entrypoint = [ (pkgs.headscale + "/bin/headscale") ];
|
||||
};
|
||||
in
|
||||
rec {
|
||||
|
|
Loading…
Reference in a new issue