formatting.
This commit is contained in:
parent
487fe1f4c2
commit
1e6a1e3f93
|
@ -15,8 +15,8 @@
|
||||||
"34197:34197"
|
"34197:34197"
|
||||||
"27015:27015"
|
"27015:27015"
|
||||||
];
|
];
|
||||||
environment={
|
environment = {
|
||||||
UPDATE_MODS_ON_START="true";
|
UPDATE_MODS_ON_START = "true";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,13 +16,13 @@ in {
|
||||||
headerStyle = "boxed";
|
headerStyle = "boxed";
|
||||||
base = "https://${baseurl}";
|
base = "https://${baseurl}";
|
||||||
language = "en";
|
language = "en";
|
||||||
hideVersion=true;
|
hideVersion = true;
|
||||||
statusStyle = "dot";
|
statusStyle = "dot";
|
||||||
quicklaunch = {
|
quicklaunch = {
|
||||||
searchDescriptions = true;
|
searchDescriptions = true;
|
||||||
hideInternetSearch = false;
|
hideInternetSearch = false;
|
||||||
hideVisitUrl = false;
|
hideVisitUrl = false;
|
||||||
provider="duckduckgo";
|
provider = "duckduckgo";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -88,19 +88,18 @@ in {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Radicale={
|
Radicale = {
|
||||||
icon="sh-radicale.svg";
|
icon = "sh-radicale.svg";
|
||||||
href="https://cal.venberg.xyz";
|
href = "https://cal.venberg.xyz";
|
||||||
siteMonitor="https://cal.venberg.xyz";
|
siteMonitor = "https://cal.venberg.xyz";
|
||||||
description="Calander administration";
|
description = "Calander administration";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Syncthing={
|
Syncthing = {
|
||||||
icon="sh-syncthing.svg";
|
icon = "sh-syncthing.svg";
|
||||||
href="http://localhost:8384/";
|
href = "http://localhost:8384";
|
||||||
siteMonitor="http://localhost:8384/";
|
description = "Local Syncthing dashboard";
|
||||||
description="Local Syncthing dashboard";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
@ -116,11 +115,11 @@ in {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
Github={
|
Github = {
|
||||||
icon="si-github-#181717";
|
icon = "si-github-#181717";
|
||||||
href="https://github.com";
|
href = "https://github.com";
|
||||||
siteMonitor="https://git.venberg.xyz";
|
siteMonitor = "https://git.venberg.xyz";
|
||||||
description="Non self hosted Git forge :(";
|
description = "Non self hosted Git forge :(";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
overrideFolders = false;
|
overrideFolders = false;
|
||||||
openDefaultPorts = true;
|
openDefaultPorts = true;
|
||||||
systemService = true;
|
systemService = true;
|
||||||
dataDir="/home/${config.host.user}/Sync";
|
dataDir = "/home/${config.host.user}/Sync";
|
||||||
configDir="/home/${config.host.user}/.local/state/syncthing";
|
configDir = "/home/${config.host.user}/.local/state/syncthing";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
../../configs/nixos/nginx.nix
|
../../configs/nixos/nginx.nix
|
||||||
];
|
];
|
||||||
services.nginx.clientMaxBodySize="100m";
|
services.nginx.clientMaxBodySize = "100m";
|
||||||
services.nginx.virtualHosts = {
|
services.nginx.virtualHosts = {
|
||||||
"gabevenberg.com" = {
|
"gabevenberg.com" = {
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
|
|
|
@ -25,7 +25,7 @@ in {
|
||||||
sopsFile = "${inputs.nix-secrets}/restic-server";
|
sopsFile = "${inputs.nix-secrets}/restic-server";
|
||||||
format = "binary";
|
format = "binary";
|
||||||
path = "/backup/restic/.htpasswd";
|
path = "/backup/restic/.htpasswd";
|
||||||
owner="restic";
|
owner = "restic";
|
||||||
};
|
};
|
||||||
secrets.restic-url = {
|
secrets.restic-url = {
|
||||||
sopsFile = "${inputs.nix-secrets}/restic-client.yaml";
|
sopsFile = "${inputs.nix-secrets}/restic-client.yaml";
|
||||||
|
|
Loading…
Reference in a new issue