infrastructure/meta/nixpkgs.nix
Ryan Lahfa 344cc26d8e feat(meta/*): support generalized deployments
Our colmena knows how to deal with families of system types, e.g. NixOS
systems or Liminix-based systems.

This is a step 1 towards supporting our APs in our infrastructure.

Signed-off-by: Ryan Lahfa <ryan@dgnum.eu>
2024-12-07 15:26:13 +01:00

24 lines
366 B
Nix

{
versions = {
# Default version of nixpkgs to use
default = "24.05";
# Supported nixpkgs versions
supported = [
"unstable"
"23.11"
"24.05"
];
};
systems = {
# Default system for our deployments
default = "nixos";
# Supported system types
supported = [
"zyxel-nwa50ax"
"nixos"
];
};
}