infrastructure/meta/nodes.nix

46 lines
822 B
Nix
Raw Normal View History

###
# 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
# }
let
mkNode = _: attrs: {
adminGroups = [ ];
admins = [ ];
2023-05-22 17:24:42 +02:00
deployment = { };
2023-05-22 17:24:42 +02:00
nixpkgs = "23.11";
} // attrs;
in
2023-05-22 17:24:42 +02:00
builtins.mapAttrs mkNode {
web01 = {
2023-12-06 16:55:51 +01:00
deployment.tags = [ "web" ];
2023-05-22 15:06:11 +02:00
stateVersion = "23.05";
2023-05-22 15:06:11 +02:00
};
2023-07-18 17:00:31 +02:00
compute01 = {
deployment.tags = [ "dns" ];
stateVersion = "23.05";
2023-07-18 17:00:31 +02:00
};
storage01 = {
stateVersion = "23.11";
2023-07-18 17:00:31 +02:00
};
2024-01-10 15:00:18 +01:00
vault01 = {
stateVersion = "23.11";
nixpkgs = "unstable";
2024-01-10 15:00:18 +01:00
};
2023-05-22 15:06:11 +02:00
}