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

11 lines
285 B
Nix
Raw Normal View History

2020-06-10 17:37:25 +02:00
{ config, pkgs, ... }: {
2019-10-26 13:43:30 +02:00
imports = [ <niveum/modules/retiolum.nix> ];
2020-06-10 17:37:25 +02:00
networking.hosts = { "42:0:ca48:f98f:63d7:31ce:922b:245d" = [ "go" ]; };
environment.etc."tinc/retiolum/rsa_key.priv" = {
2020-09-24 19:25:47 +02:00
text = builtins.readFile <system-secrets/retiolum.key>;
mode = "400";
};
2018-12-04 21:08:12 +01:00
}