feat: per-server nixpkgs pins (all follow default)

This commit is contained in:
Oleks
2026-02-24 15:10:09 +02:00
parent 901b84d219
commit d4f648fec9
2 changed files with 29 additions and 4 deletions
Generated
+16 -1
View File
@@ -18,7 +18,22 @@
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"nixpkgs-armer": [
"nixpkgs"
],
"nixpkgs-bim": [
"nixpkgs"
],
"nixpkgs-howard": [
"nixpkgs"
],
"nixpkgs-mermaid": [
"nixpkgs"
],
"nixpkgs-micron": [
"nixpkgs"
]
}
}
},
+13 -3
View File
@@ -1,7 +1,17 @@
{
description = "Shared nixpkgs pin for the server fleet";
description = "Shared nixpkgs pins for the server fleet";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/2fc6539b481e1d2569f25f8799236694180c0993";
inputs = {
# Default pin — all servers follow this unless overridden below
nixpkgs.url = "github:NixOS/nixpkgs/2fc6539b481e1d2569f25f8799236694180c0993";
outputs = { self, nixpkgs }: { };
# Per-server pins (follow default; replace with a direct url to override)
nixpkgs-armer.follows = "nixpkgs";
nixpkgs-bim.follows = "nixpkgs";
nixpkgs-howard.follows = "nixpkgs";
nixpkgs-mermaid.follows = "nixpkgs";
nixpkgs-micron.follows = "nixpkgs";
};
outputs = { self, nixpkgs, nixpkgs-armer, nixpkgs-bim, nixpkgs-howard, nixpkgs-mermaid, nixpkgs-micron }: { };
}