aboutsummaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorADRN <adrien@luxeylab.net>2021-11-28 13:37:11 +0100
committerADRN <adrien@luxeylab.net>2021-11-28 13:37:11 +0100
commit839e6918803deee72a6c8444e9a61ca0af75b79d (patch)
treefc0a0c6baa7d3a17887feeb44b6883e44f792c2f /site
parent9578121f5b99c096447829f7fff6da54b0e9deab (diff)
parentfe080ff4b6ffd435ab62f193072ec22e30b8602f (diff)
downloadnixcfg-839e6918803deee72a6c8444e9a61ca0af75b79d.tar.gz
nixcfg-839e6918803deee72a6c8444e9a61ca0af75b79d.zip
Merge branch 'main' of git.deuxfleurs.fr:Deuxfleurs/nixcfg into main
Diffstat (limited to 'site')
-rw-r--r--site/neptune.nix24
-rw-r--r--site/pluton.nix13
2 files changed, 37 insertions, 0 deletions
diff --git a/site/neptune.nix b/site/neptune.nix
new file mode 100644
index 0000000..7fa6252
--- /dev/null
+++ b/site/neptune.nix
@@ -0,0 +1,24 @@
+{ config, pkgs, ... }:
+
+{
+ networking.defaultGateway = {
+ address = "192.168.1.254";
+ interface = "eno1";
+ };
+
+ services.consul.extraConfig.datacenter = "neptune";
+ services.nomad.settings.datacenter = "neptune";
+ services.consul.extraConfig.bootstrap_expect = 3;
+ services.nomad.settings.server.bootstrap_expect = 3;
+
+ # ----
+
+ nix = {
+ binaryCaches = [
+ "http://binarycache.home.adnab.me"
+ ];
+ binaryCachePublicKeys = [
+ "binarycache.home.adnab.me:ErR6pMnewf9oVyZJd5uC2nI4EZF49c7Mh86eDZWYZaw="
+ ];
+ };
+}
diff --git a/site/pluton.nix b/site/pluton.nix
new file mode 100644
index 0000000..ec94018
--- /dev/null
+++ b/site/pluton.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, ... }:
+
+{
+ networking.defaultGateway = {
+ address = "192.168.0.1";
+ interface = "enp0s25";
+ };
+
+ services.consul.extraConfig.datacenter = "pluton";
+ services.nomad.settings.datacenter = "pluton";
+ services.consul.extraConfig.bootstrap_expect = 1;
+ services.nomad.settings.server.bootstrap_expect = 1;
+}