forked from DGNum/infrastructure
27 lines
650 B
Nix
27 lines
650 B
Nix
###
|
|
# File specifying all the deployement options for the nodes administrated by the dgnum.
|
|
#
|
|
# Node metadata template is:
|
|
#
|
|
# NODE_NAME = {
|
|
# adminGroups = []; # List of groups that have root access
|
|
# admins = []; # List of individuals that have root access
|
|
# deployment = {}; # Colmena deployment options
|
|
# nixpkgs = "unstable" or "22.11"; # nixpkgs version
|
|
# }
|
|
|
|
{
|
|
ap01 = {
|
|
site = "unknown";
|
|
adminGroups = [ "fai" ];
|
|
|
|
hashedPassword = "$y$j9T$DMOQEWOYFHjNS0myrXp4x/$MG33VSdXGvib.99eN.AbvyVdNNJw4ERjAwK4.ULJe/A";
|
|
|
|
stateVersion = null;
|
|
|
|
nixpkgs = {
|
|
system = "zyxel-nwa50ax";
|
|
version = "24.05";
|
|
};
|
|
};
|
|
}
|