Skip to content

Commit

Permalink
chore: use ssh instead of https for nil inside flake.nix
Browse files Browse the repository at this point in the history
ssh scheme will use ssh key instead of username/password for fetching private repo
  • Loading branch information
x-mass committed Aug 14, 2024
1 parent ffcf51d commit 230ea44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
};
nil-cluster = {
type = "git"; # 'git' is required here, for 'github' we cannot compute cluster version via git history
url = "https://github.com/NilFoundation/nil";
url = "ssh://git@github.com/NilFoundation/nil";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
Expand Down

0 comments on commit 230ea44

Please sign in to comment.