summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2026-04-11 12:34:32 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2026-04-11 12:34:32 -0600
commit8cf9cd164c06dcab68c51db37f85985dfdfd7850 (patch)
treeff14c7550bdc8d12ad0824951ecb3f219d950b1e
parent53a81c2a67888689ced22a6ce946b80f95509067 (diff)
network time
-rw-r--r--machines/bosco/default.nix68
1 files changed, 34 insertions, 34 deletions
diff --git a/machines/bosco/default.nix b/machines/bosco/default.nix
index 5442318..106fc39 100644
--- a/machines/bosco/default.nix
+++ b/machines/bosco/default.nix
@@ -50,40 +50,40 @@
# networking.usePredictableInterfaceNames = false;
- # networking.localCommands = ''
- # ip addr add 23.131.76.82/32 dev ens18
- # ip route del default
- # ip route add default via "172.16.101.1" dev ens18 src 23.131.76.82
- # '';
- networking.interfaces."eth0".ipv4 = {
- addresses = [{
- address = "23.131.76.82";
- prefixLength = 32;
- }
- {
- address = "172.16.101.82";
- prefixLength = 24;
- }];
- routes = [
- {
- via = "172.16.101.1";
- address = "172.16.101.82";
- prefixLength = 24;
- options = {
- table = "default";
- src = "23.131.76.82";
- };
- }
- # {
- # via = "172.16.101.1";
- # options = {
- # table = "default";
- # metric = "202";
- # };
- # }
- ];
- };
- networking.nameservers = [ "9.9.9.9" ];
+ networking.localCommands = ''
+ ip addr add 23.131.76.82/32 dev ens18
+ ip route del default
+ ip route add default via "172.16.101.1" dev ens18 src 23.131.76.82
+ '';
+ # networking.interfaces."eth0".ipv4 = {
+ # addresses = [{
+ # address = "23.131.76.82";
+ # prefixLength = 32;
+ # }
+ # {
+ # address = "172.16.101.82";
+ # prefixLength = 24;
+ # }];
+ # # routes = [
+ # # {
+ # # via = "172.16.101.1";
+ # # address = "172.16.101.82";
+ # # prefixLength = 24;
+ # # options = {
+ # # table = "default";
+ # # src = "23.131.76.82";
+ # # };
+ # # }
+ # # # {
+ # # # via = "172.16.101.1";
+ # # # options = {
+ # # # table = "default";
+ # # # metric = "202";
+ # # # };
+ # # # }
+ # # ];
+ # };
+ # networking.nameservers = [ "9.9.9.9" ];
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";