forked from DGNum/infrastructure
Ryan Lahfa
344cc26d8e
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>
24 lines
366 B
Nix
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"
|
|
];
|
|
};
|
|
}
|