explicitely specify ref

This commit is contained in:
Adithya 2024-05-30 23:06:45 +05:30
parent 8dcc4f5975
commit ac78efc76b
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 9 additions and 5 deletions

View file

@ -132,6 +132,7 @@
},
"original": {
"owner": "nix-community",
"ref": "master",
"repo": "home-manager",
"type": "github"
}
@ -147,6 +148,7 @@
},
"original": {
"owner": "nix-community",
"ref": "master",
"repo": "impermanence",
"type": "github"
}
@ -171,6 +173,7 @@
},
"original": {
"owner": "nix-community",
"ref": "master",
"repo": "lanzaboote",
"type": "github"
}
@ -349,6 +352,7 @@
},
"original": {
"owner": "adtya",
"ref": "main",
"repo": "varnam-nix",
"type": "github"
}

View file

@ -13,15 +13,15 @@
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
url = "github:nix-community/home-manager?ref=master";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils.url = "github:numtide/flake-utils";
impermanence.url = "github:nix-community/impermanence";
lanzaboote.url = "github:nix-community/lanzaboote";
varnam-nix.url = "github:adtya/varnam-nix";
impermanence.url = "github:nix-community/impermanence?ref=master";
lanzaboote.url = "github:nix-community/lanzaboote?ref=master";
varnam-nix.url = "github:adtya/varnam-nix?ref=main";
};
outputs =