modularization

This commit is contained in:
zuma 2025-11-04 23:02:58 +01:00
parent fdcd4dbce9
commit f1fe0d8549
7 changed files with 39 additions and 62 deletions

5
cluster/nodes/fifi.nix Executable file
View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ...}:
{
networking.hostName = "fifi";
}

5
cluster/nodes/loulou.nix Executable file
View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ...}:
{
networking.hostName = "loulou";
}

9
cluster/nodes/riri.nix Executable file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ...}:
{
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "riri";
}