Update infra repo reference (#724)
cc https://github.com/NixOS/infra/issues/359 Co-authored-by: Rok Garbas <rok@floxdev.com>
This commit is contained in:
parent
ff62e2b296
commit
27a5fcd79f
14
flake.lock
14
flake.lock
|
@ -15,19 +15,19 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixos-org-configurations": {
|
"nixos-infra": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1701287284,
|
"lastModified": 1709405783,
|
||||||
"narHash": "sha256-tu30FJa7e8eZCZg0CmQuAGimFQ/RVPooTFl59SiELxY=",
|
"narHash": "sha256-qZ1lM5kTiqQT/jbhim0CxYaEqlfJKTQvytyaBflkDnM=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-org-configurations",
|
"repo": "infra",
|
||||||
"rev": "33bc481f102213c0c4e41cd356e7bcf1aea28107",
|
"rev": "1261d183ad0c1cf036853087be306e7c792e0cdd",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-org-configurations",
|
"repo": "infra",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
"nixos-org-configurations": "nixos-org-configurations",
|
"nixos-infra": "nixos-infra",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"npmlock2nix": "npmlock2nix"
|
"npmlock2nix": "npmlock2nix"
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,14 +8,14 @@
|
||||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||||
inputs.npmlock2nix.url = "github:nix-community/npmlock2nix";
|
inputs.npmlock2nix.url = "github:nix-community/npmlock2nix";
|
||||||
inputs.npmlock2nix.flake = false;
|
inputs.npmlock2nix.flake = false;
|
||||||
inputs.nixos-org-configurations.url = "github:NixOS/nixos-org-configurations";
|
inputs.nixos-infra.url = "github:NixOS/infra";
|
||||||
inputs.nixos-org-configurations.flake = false;
|
inputs.nixos-infra.flake = false;
|
||||||
|
|
||||||
outputs = { self
|
outputs = { self
|
||||||
, nixpkgs
|
, nixpkgs
|
||||||
, flake-utils
|
, flake-utils
|
||||||
, npmlock2nix
|
, npmlock2nix
|
||||||
, nixos-org-configurations
|
, nixos-infra
|
||||||
}:
|
}:
|
||||||
flake-utils.lib.eachDefaultSystem
|
flake-utils.lib.eachDefaultSystem
|
||||||
(system:
|
(system:
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
version = lib.fileContents ./VERSION;
|
version = lib.fileContents ./VERSION;
|
||||||
nixosChannels =
|
nixosChannels =
|
||||||
let
|
let
|
||||||
allChannels = (import "${nixos-org-configurations}/channels.nix").channels;
|
allChannels = (import "${nixos-infra}/channels.nix").channels;
|
||||||
filteredChannels =
|
filteredChannels =
|
||||||
lib.filterAttrs
|
lib.filterAttrs
|
||||||
(n: v:
|
(n: v:
|
||||||
|
|
Loading…
Reference in a new issue