This commit is contained in:
emily 2024-05-06 20:42:50 +02:00
parent 49dfd40215
commit 7ac599ce91
Signed by: emily
GPG key ID: F6F4C66207FCF995
5 changed files with 13 additions and 8 deletions

View file

@ -52,7 +52,6 @@
programs.eza = {
enable = true;
enableAliases = true;
icons = true;
git = true;
extraOptions = [

View file

@ -47,8 +47,8 @@ let
jellyAddr = "[::1]";
jellyWeb = {
forceSSL = true;
http3 = true;
quic = true;
#http3 = true;
#quic = true;
inherit extraConfig;
locations = {

View file

@ -4,6 +4,7 @@
../../profiles/builder.nix
../../profiles/headless.nix
../../services/forgejo.nix
../../services/nginx.nix
./hardware-configuration.nix
./disko.nix
];

View file

@ -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 = {

View file

@ -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 = {