1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 11:01:07 +01:00
Files
niveum/configs/retiolum.nix

38 lines
848 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2019-10-26 13:43:30 +02:00
imports = [ <niveum/modules/retiolum.nix> ];
2019-06-15 17:50:26 +02:00
fileSystems."/mnt/lassulusflix" = {
device = "prism.r:/export";
fsType = "nfs";
};
networking.hosts = {
"42:0:ca48:f98f:63d7:31ce:922b:245d" = [ "go" ];
};
networking.retiolum = {
scardanelli = {
ipv4 = "10.243.2.2";
ipv6 = "42:0:3c46:4007:5bce:f1bc:606b:2b18";
2018-12-04 21:08:12 +01:00
};
homeros = {
ipv4 = "10.243.2.1";
ipv6 = "42:0:3c46:53e:e63d:e62a:56ea:c705";
};
2019-06-15 17:50:02 +02:00
catullus = {
ipv4 = "10.243.2.3";
ipv6 = "42:0:3c46:3ec0:7aad:d1d5:9842:da4c";
};
wilde = {
ipv4 = "10.243.2.4";
2019-06-15 20:11:39 +02:00
ipv6 = "42:0:3c46:907c:1fb8:b74f:c59b:1ee3";
2019-06-15 17:50:02 +02:00
};
}.${config.networking.hostName};
environment.etc."tinc/retiolum/rsa_key.priv" = {
2019-06-17 19:09:55 +02:00
text = builtins.readFile <secrets/retiolum.key>;
mode = "400";
};
2018-12-04 21:08:12 +01:00
}