- Nix 97%
- Shell 1.7%
- Python 0.7%
- Ruby 0.6%
|
Some checks failed
Build all the nodes / build01 (push) Failing after 5m25s
Build all the nodes / bridge01 (push) Failing after 6m0s
Build all the nodes / cof02 (push) Failing after 4m27s
Build all the nodes / AP-test (push) Failing after 6m45s
Build all the nodes / geo01 (push) Failing after 1m46s
Build all the nodes / geo02 (push) Failing after 1m42s
Build all the nodes / AP-jourdan (push) Failing after 9m37s
Build all the nodes / hypervisors0 (push) Failing after 2m32s
Build all the nodes / hypervisors1 (push) Failing after 3m21s
Build all the nodes / AP-montrouge (push) Failing after 12m40s
Build all the nodes / optic-loop (push) Failing after 59s
Build all the nodes / AP-pantheon (push) Failing after 16m18s
Build all the nodes / storage01 (push) Failing after 3m5s
Build all the nodes / lab-router01 (push) Failing after 6m57s
Build all the nodes / rescue01 (push) Failing after 4m51s
Build all the nodes / iso (push) Failing after 8m57s
Build all the nodes / sw-Jourdan (push) Failing after 52s
Build all the nodes / sw-Montrouge (push) Failing after 42s
Build all the nodes / sw-Pantheon (push) Failing after 1m21s
Build all the nodes / tower01 (push) Failing after 1m28s
Build all the nodes / external01 (push) Failing after 14m3s
Build all the nodes / compute01 (push) Failing after 19m42s
Run pre-commit on all files / pre-commit (push) Successful in 1m32s
Build all the nodes / web02 (push) Failing after 3m30s
Build all the nodes / web03 (push) Failing after 3m41s
Build all the nodes / vault01 (push) Failing after 6m51s
Build all the nodes / vault02 (push) Failing after 7m28s
Build all the nodes / vault03 (push) Failing after 7m2s
Build all the nodes / web01 (push) Failing after 6m44s
Build all the nodes / krz01 (push) Failing after 34m51s
Build the shell / build-shell (push) Has been cancelled
Cache the bootstrapped sources / cache-sources (push) Has been cancelled
|
||
|---|---|---|
| .forgejo/workflows | ||
| lib | ||
| LICENSES | ||
| machines | ||
| meta | ||
| modules | ||
| patches | ||
| pkgs | ||
| scripts | ||
| workflows | ||
| .envrc | ||
| .gitattributes | ||
| .gitignore | ||
| bootstrap.nix | ||
| CONTRIBUTE.md | ||
| cz.toml | ||
| default.nix | ||
| hive.nix | ||
| keys.nix | ||
| lon.lock | ||
| lon.nix | ||
| README.md | ||
| REUSE.toml | ||
| shell.nix | ||
❄️ infrastructure
The dgnum infrastructure.
Contributing
Some instruction on how to contribute are available (in french) in /CONTRIBUTE.md. You're expected to read this document before commiting to the repo.
Some documentation for the development tools are provided in the aforementioned file.
Using the binary cache
Add the following module to your configuration (and pin this repo using your favorite tool: npins, lon, etc...):
{ lib, ... }:
let
dgnum-infra = PINNED_PATH_TO_INFRA;
in {
nix.settings = (import dgnum-infra { }).mkCacheSettings {
caches = [ "infra" ];
};
}
Adding a new machine
The first step is to create a minimal viable NixOS host, using tha means necessary. The second step is to find a name for this host, it must be unique from the other hosts.
Tip
For the rest of this part, we assume that the host is named
host02
Download the keys
The public SSH keys of host02 have to be saved to keys, preferably only the ssh-ed25519 one.
It can be retreived with :
ssh-keyscan address.of.host02 2>/dev/null | awk '/ssh-ed25519/ {print $2,$3}'
Initialize the machine folder and configuration
- Create a folder
host02undermachines/ - Copy the hardware configuration file generated by
nixos-generate-configtomachines/host02/_hardware-configuration.nix - Create a
machines/host02/_configuration.nixfile, it will contain the main configuration options, the basic content of this file should be the following
{ lib, ... }:
lib.extra.mkConfig {
enabledModules = [
# List of modules to enable
];
enabledServices = [
# List of services to enable
];
extraConfig = {
services.netbird.enable = true;
};
root = ./.;
}
Fill in the metadata
Network configuration
The network is declared in meta/network.nix, the necessary hostId value can be generated with :
head -c4 /dev/urandom | od -A none -t x4 | sed 's/ //'
Other details
The general metadata is declared in meta/nodes.nix, the main values to declare are :
site, where the node is physically locatedstateVersionnixpkgs, the nixpkgs version to use
Initialize secrets
Create the directory secrets in the configuration folder, and add a secrets.nix file containing :
(import ../../../keys.nix).mkSecrets [ "host02" ] [
# List of secrets for host02
]
This will be used for future secret management.
Update encrypted files
Both the Arkheon, Netbox and notification modules have secrets that are deployed on all machines. To make those services work correctly, run in modules/dgn-records, modules/dgn-netbox-agent and modules/dgn-notify :
agenix -r
Commit and create a PR
Once all of this is done, check that the configuration builds correctly :
colmena build --on host02
Apply it, and create a Pull Request.