diff options
| -rw-r--r-- | srv/h-alpha/hardware-configuration.nix | 37 | ||||
| -rw-r--r-- | srv/hadante/configuration.nix | 7 |
2 files changed, 17 insertions, 27 deletions
diff --git a/srv/h-alpha/hardware-configuration.nix b/srv/h-alpha/hardware-configuration.nix index ccf09a4..b6490f5 100644 --- a/srv/h-alpha/hardware-configuration.nix +++ b/srv/h-alpha/hardware-configuration.nix @@ -32,41 +32,30 @@ ]; routes = [ - { routeConfig.Gateway = "fe80::1"; } + { Gateway = "fe80::1"; } { - routeConfig = { - Destination = "172.31.1.1"; - }; + Destination = "172.31.1.1"; } { - routeConfig = { - Gateway = "172.31.1.1"; - GatewayOnLink = true; - }; + Gateway = "172.31.1.1"; + GatewayOnLink = true; } { - routeConfig = { - Destination = "172.16.0.0/12"; - Type = "unreachable"; - }; + Destination = "172.16.0.0/12"; + Type = "unreachable"; } { - routeConfig = { - Destination = "192.168.0.0/16"; - Type = "unreachable"; - }; + Destination = "192.168.0.0/16"; + Type = "unreachable"; } { - routeConfig = { - Destination = "10.0.0.0/8"; - Type = "unreachable"; - }; + Destination = "10.0.0.0/8"; + Type = "unreachable"; + } { - routeConfig = { - Destination = "fc00::/7"; - Type = "unreachable"; - }; + Destination = "fc00::/7"; + Type = "unreachable"; } ]; }; diff --git a/srv/hadante/configuration.nix b/srv/hadante/configuration.nix index 4c85342..4d97ac7 100644 --- a/srv/hadante/configuration.nix +++ b/srv/hadante/configuration.nix @@ -5,7 +5,6 @@ { config, pkgs, - customss, inputs, ... }: @@ -142,8 +141,6 @@ in "flakes" ]; - system.stateVersion = "25.05"; # Did you read the comment? - fonts.packages = with pkgs; [ nerd-fonts.comic-shanns-mono @@ -155,6 +152,9 @@ in programs.kitty = { enable = true; }; + home.file = { + ".jdks/jdk21".source = pkgs.jdk21; + }; home.stateVersion = "25.05"; }; @@ -209,5 +209,6 @@ in nil ] ); + system.stateVersion = "25.05"; }; } |
