2019-01-30 13:26:06 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
{
|
2019-10-26 13:43:30 +02:00
|
|
|
imports = [ <niveum/modules/retiolum.nix> ];
|
2019-01-30 13:16:49 +01:00
|
|
|
|
2020-04-13 11:01:39 +02:00
|
|
|
fileSystems."/media/flix" = {
|
2019-06-15 17:50:26 +02:00
|
|
|
device = "prism.r:/export";
|
|
|
|
|
fsType = "nfs";
|
|
|
|
|
};
|
|
|
|
|
|
2019-01-30 13:26:06 +01:00
|
|
|
networking.hosts = {
|
|
|
|
|
"42:0:ca48:f98f:63d7:31ce:922b:245d" = [ "go" ];
|
|
|
|
|
};
|
2019-01-30 13:16:49 +01:00
|
|
|
|
2019-01-30 13:26:06 +01:00
|
|
|
environment.etc."tinc/retiolum/rsa_key.priv" = {
|
2019-06-17 19:09:55 +02:00
|
|
|
text = builtins.readFile <secrets/retiolum.key>;
|
2019-01-30 13:26:06 +01:00
|
|
|
mode = "400";
|
|
|
|
|
};
|
2018-12-04 21:08:12 +01:00
|
|
|
}
|