modularization
This commit is contained in:
parent
fdcd4dbce9
commit
f1fe0d8549
7 changed files with 39 additions and 62 deletions
5
cluster/nodes/fifi.nix
Executable file
5
cluster/nodes/fifi.nix
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, lib, pkgs, ...}:
|
||||
|
||||
{
|
||||
networking.hostName = "fifi";
|
||||
}
|
||||
5
cluster/nodes/loulou.nix
Executable file
5
cluster/nodes/loulou.nix
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, lib, pkgs, ...}:
|
||||
|
||||
{
|
||||
networking.hostName = "loulou";
|
||||
}
|
||||
9
cluster/nodes/riri.nix
Executable file
9
cluster/nodes/riri.nix
Executable 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue