The dgnum infrastructure
  • Nix 97.1%
  • Shell 1.6%
  • Python 0.7%
  • Ruby 0.6%
Find a file
sinavir 8eda9db807
All checks were successful
Build all the nodes / AP-test (push) Successful in 18s
Run pre-commit on all files / pre-commit (push) Successful in 21s
Build all the nodes / bridge01 (push) Successful in 22s
Build all the nodes / build01 (push) Successful in 23s
Build all the nodes / AP-jourdan (push) Successful in 44s
Build all the nodes / cof02 (push) Successful in 26s
Build all the nodes / geo01 (push) Successful in 30s
Build all the nodes / geo02 (push) Successful in 31s
Build all the nodes / iso (push) Successful in 35s
Build all the nodes / hypervisors1 (push) Successful in 36s
Build all the nodes / hypervisors0 (push) Successful in 36s
Build all the nodes / external01 (push) Successful in 40s
Build all the nodes / compute01 (push) Successful in 45s
Build all the nodes / optic-loop (push) Successful in 13s
Build all the nodes / jeux02 (push) Successful in 25s
Build all the nodes / AP-montrouge (push) Successful in 1m16s
Build all the nodes / krz01 (push) Successful in 34s
Build all the nodes / sw-Montrouge (push) Successful in 16s
Build all the nodes / sw-Jourdan (push) Successful in 16s
Build all the nodes / sw-Pantheon (push) Successful in 19s
Check meta / check_meta (push) Successful in 1m28s
Build all the nodes / AP-pantheon (push) Successful in 1m28s
Build all the nodes / storage01 (push) Successful in 36s
Build the shell / build-shell (push) Successful in 14s
Build all the nodes / rescue01 (push) Successful in 48s
Build all the nodes / web01 (push) Successful in 38s
Build all the nodes / web02 (push) Successful in 28s
Build all the nodes / web03 (push) Successful in 33s
Build all the nodes / tower01 (push) Successful in 50s
Build all the nodes / lab-router01 (push) Successful in 1m15s
Build all the nodes / vault02 (push) Successful in 45s
Build all the nodes / vault03 (push) Successful in 45s
Build all the nodes / vault01 (push) Successful in 55s
fix(dns/kahulm): vm has changed ips
2026-07-26 20:36:39 +02:00
.forgejo/workflows feat: init jeux02 2026-06-19 16:17:32 +02:00
lib feat(nix-lib/network): init extra.net for ip manipulation 2026-04-19 10:32:02 +02:00
LICENSES fix(prometheus-snmp-exporter): patch to be compatible with net-snmp nixpkgs version 2026-04-20 16:04:10 +02:00
machines feat(storage01): Add NDD redirect for CRI documentation 2026-07-16 17:21:31 +02:00
meta fix(dns/kahulm): vm has changed ips 2026-07-26 20:36:39 +02:00
modules feat(meta): Update network config for pav01 nodes in preparation of the move 2026-06-20 11:52:11 +02:00
patches chore(pretalx): nixpkgs now allows setting an env file 2026-04-20 16:04:10 +02:00
pkgs Revert "feat(cof02,web03): nixos-25.05 -> nixos-26.05" 2026-06-19 16:24:49 +02:00
scripts fix(scripts/liminix-rebuild): only one argument to script (AP name) 2026-01-14 21:21:57 +01:00
workflows feat(workflows): consistently run jobs on the same runner types 2026-04-20 16:04:10 +02:00
.envrc feat(workflows): Switch to a nix-based definition of workflows 2024-11-11 17:57:23 +01:00
.gitattributes docs(isp): aps.json are generated, other json config is hand taylored 2025-09-08 18:08:59 +02:00
.gitignore fix(gitignore): add nixos test history and vim swp files 2026-03-25 16:42:36 +01:00
bootstrap.nix feat(workflows): Add caching for all the sources 2025-08-17 00:32:49 +02:00
CONTRIBUTE.md chore: Add license and copyright information 2024-12-13 12:41:38 +01:00
cz.toml fix(comitizen): Allow lon related commits 2025-06-24 12:11:00 +02:00
default.nix feat: init jeux02 2026-06-19 16:17:32 +02:00
hive.nix fix(infra): Enable pipe-operator feature 2026-04-23 17:09:18 +02:00
keys.nix fix(keys): Make it so agenix works again 2025-02-13 17:38:12 +01:00
lon.lock lon: fix zulip branch 2026-07-16 21:56:10 +02:00
lon.nix lon: update wp4nix 2025-08-06 06:03:24 +00:00
nix.conf fix(shell): Add required config for eval 2026-04-23 17:09:18 +02:00
README.md chore: Refactor meta to a module architecture 2025-02-06 13:08:04 +01:00
REUSE.toml feat(cof02): Deploy staging cas 2026-04-20 16:04:10 +02:00
shell.nix feat(nix): Use passthru for shells and return to importing the scripts 2024-11-14 22:18:40 +01:00

❄️ 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 host02 under machines/
  • Copy the hardware configuration file generated by nixos-generate-config to machines/host02/_hardware-configuration.nix
  • Create a machines/host02/_configuration.nix file, 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 located
  • stateVersion
  • nixpkgs, 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.