diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-04-21 23:00:43 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-04-21 23:00:43 +0200 |
commit | a9a665e437a12e8a3231bf537f7f8ef10a9b9cf4 (patch) | |
tree | 97dd5ceed3c43aac748bdd8c66c06e913862e986 /os/host_TOREWORK/cluster/prod/node/courgette.nix | |
parent | c430d8eaf1d091ad27e842c0000b77d87d791da6 (diff) | |
download | nixcfg-a9a665e437a12e8a3231bf537f7f8ef10a9b9cf4.tar.gz nixcfg-a9a665e437a12e8a3231bf537f7f8ef10a9b9cf4.zip |
Move files againrefactor
Diffstat (limited to 'os/host_TOREWORK/cluster/prod/node/courgette.nix')
-rw-r--r-- | os/host_TOREWORK/cluster/prod/node/courgette.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/os/host_TOREWORK/cluster/prod/node/courgette.nix b/os/host_TOREWORK/cluster/prod/node/courgette.nix new file mode 100644 index 0000000..d34e7a5 --- /dev/null +++ b/os/host_TOREWORK/cluster/prod/node/courgette.nix @@ -0,0 +1,29 @@ +# Configuration file local to this node + +{ config, pkgs, ... }: + +{ + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.timeout = 20; + boot.loader.efi.canTouchEfiVariables = true; + + networking.hostName = "courgette"; + + deuxfleurs.network_interface = "eno1"; + deuxfleurs.lan_ip = "192.168.1.32"; + + networking.interfaces.eno1.ipv6.addresses = [ + { + address = "2a01:e0a:c:a720::32"; + prefixLength = 64; + } + ]; + + deuxfleurs.vpn_ip = "10.42.1.32"; + deuxfleurs.vpn_listen_port = 33732; + deuxfleurs.is_raft_server = true; + + # Enable netdata monitoring + services.netdata.enable = true; +} |