nixcfg/cluster/prod/node/dahlia.nix

14 lines
344 B
Nix
Raw Normal View History

2022-08-23 20:13:26 +00:00
# Configuration file local to this node
{ config, pkgs, ... }:
{
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-04-05 12:06:59 +00:00
deuxfleurs.hostName = "dahlia";
deuxfleurs.staticIPv4.address = "192.168.1.11";
deuxfleurs.staticIPv6.address = "2a01:e0a:28f:5e60::11";
2022-08-23 20:13:26 +00:00
}