fixed ipv6 on cirrus, fixed remote backups on cirrostratus.

This commit is contained in:
Gabe Venberg 2025-10-19 00:26:13 +02:00
parent 084e4ca421
commit 31d93e3770
6 changed files with 11 additions and 18 deletions

View file

@ -15,7 +15,6 @@ inputs.nixpkgs.lib.nixosSystem {
./disk-config.nix
./hardware-configuration.nix
./restic.nix
./nginx.nix
./copyparty.nix
./torrent.nix
../../configs/nixos/common.nix

View file

@ -1,13 +0,0 @@
{
inputs,
config,
pkgs,
lib,
...
}: {
imports = [
../../configs/nixos/nginx.nix
];
#Restic submits some huge requests sometimes.
services.nginx.clientMaxBodySize = "1000m";
}

View file

@ -25,7 +25,7 @@ in {
host.restic = {
enable = true;
repository = "/backup/restic/";
repository = config.sops.secrets.restic-url.path;
passwordFile = config.sops.secrets.restic-password.path;
server = {
enable = true;