diff --git a/config/hosts/_minimal/configuration.nix b/config/hosts/_minimal/configuration.nix index 585ae5c..d0d5afd 100644 --- a/config/hosts/_minimal/configuration.nix +++ b/config/hosts/_minimal/configuration.nix @@ -52,7 +52,6 @@ programs.eza = { enable = true; - enableAliases = true; icons = true; git = true; extraOptions = [ diff --git a/config/hosts/crime/nginx.nix b/config/hosts/crime/nginx.nix index 2a1a585..51bd544 100644 --- a/config/hosts/crime/nginx.nix +++ b/config/hosts/crime/nginx.nix @@ -47,8 +47,8 @@ let jellyAddr = "[::1]"; jellyWeb = { forceSSL = true; - http3 = true; - quic = true; + #http3 = true; + #quic = true; inherit extraConfig; locations = { diff --git a/config/hosts/integra/configuration.nix b/config/hosts/integra/configuration.nix index 2e9d8d0..61c69b4 100644 --- a/config/hosts/integra/configuration.nix +++ b/config/hosts/integra/configuration.nix @@ -4,6 +4,7 @@ ../../profiles/builder.nix ../../profiles/headless.nix ../../services/forgejo.nix + ../../services/nginx.nix ./hardware-configuration.nix ./disko.nix ]; diff --git a/config/hosts/ns-nbg/configuration.nix b/config/hosts/ns-nbg/configuration.nix index 1bbfe72..80da880 100644 --- a/config/hosts/ns-nbg/configuration.nix +++ b/config/hosts/ns-nbg/configuration.nix @@ -2,8 +2,9 @@ imports = [ ../../common ../../profiles/headless.nix + ../../profiles/lxc.nix ]; - kyouma.machine-type.physical = true; + kyouma.machine-type.physical = false; systemd.network.networks."98-eth-static" = { matchConfig.Type = "ether"; @@ -19,8 +20,8 @@ "185.244.193.190/22" ]; routes = [ - { routerConfig.Gateway = "fe80::1"; } - { routerConfig.Gateway = "185.244.192.1"; } + { routeConfig.Gateway = "fe80::1"; } + { routeConfig.Gateway = "185.244.192.1"; } ]; }; services.powerdns = { diff --git a/config/profiles/graphical/nixvim.nix b/config/profiles/graphical/nixvim.nix index 7978d7b..73c5494 100644 --- a/config/profiles/graphical/nixvim.nix +++ b/config/profiles/graphical/nixvim.nix @@ -14,7 +14,7 @@ ctermbg = "NONE"; bg = "NONE"; }; - options = { + opts = { number = true; expandtab = true; autoindent = true; @@ -172,7 +172,11 @@ }; }; ruff-lsp.enable = true; - rust-analyzer.enable = true; + rust-analyzer = { + enable = true; + installRustc = true; + installCargo = true; + }; }; }; plugins.none-ls = {