@cryptotaxi247 / infra / commits / a9180994

delft: flake-import nixos-channel-scripts

Pierre Bourdon committed Feb 20, 2024 at 23:55 UTC a9180994b09e122fb05cca8ba9fcd7630743f024
2 files changed +26 -1
delft/flake.lock
+21
@@ -217,6 +217,26 @@
217 "type": "github"
218 }
219 },
220 + "nixos-channel-scripts": {
221 + "inputs": {
222 + "nixpkgs": [
223 + "nixpkgs"
224 + ]
225 + },
226 + "locked": {
227 + "lastModified": 1708471570,
228 + "narHash": "sha256-OqjXLn1AVw1dyxzZPcwsa47KXn6GMfd6oSRtmi3T7II=",
229 + "owner": "NixOS",
230 + "repo": "nixos-channel-scripts",
231 + "rev": "50daba62af2b7bb90281757570be1c8cf9ded0c6",
232 + "type": "github"
233 + },
234 + "original": {
235 + "owner": "NixOS",
236 + "repo": "nixos-channel-scripts",
237 + "type": "github"
238 + }
239 + },
240 "nixpkgs": {
241 "locked": {
242 "lastModified": 1701615100,
@@ -360,6 +380,7 @@
380 "nix"
381 ],
382 "nix-netboot-serve": "nix-netboot-serve",
383 + "nixos-channel-scripts": "nixos-channel-scripts",
384 "nixpkgs": "nixpkgs_5",
385 "rfc39": "rfc39"
386 }
delft/flake.nix
+5 -1
@@ -11,10 +11,13 @@
11
12 inputs.nix-netboot-serve.url = "github:DeterminateSystems/nix-netboot-serve";
13
14 + inputs.nixos-channel-scripts.url = "github:NixOS/nixos-channel-scripts";
15 + inputs.nixos-channel-scripts.inputs.nixpkgs.follows = "nixpkgs";
16 +
17 inputs.rfc39.url = "github:NixOS/rfc39";
18 inputs.rfc39.inputs.nixpkgs.follows = "nixpkgs";
19
17 - outputs = flakes @ { self, agenix, hydra, hydra-scale-equinix-metal, nix, nixpkgs, nix-netboot-serve, rfc39 }:
20 + outputs = flakes @ { self, agenix, hydra, hydra-scale-equinix-metal, nix, nixpkgs, nixos-channel-scripts, nix-netboot-serve, rfc39 }:
21 let
22 inherit (nixpkgs) lib;
23
@@ -28,6 +31,7 @@
31
32 nixpkgs.overlays = [
33 nix.overlays.default
34 + nixos-channel-scripts.overlays.default
35 rfc39.overlays.default
36 ];
37 };