1 Commits

Author SHA1 Message Date
a5196a0ce5 Share a public folder for documents 2025-09-17 13:08:48 +02:00
9 changed files with 4 additions and 6 deletions

1
.gitattributes vendored
View File

@@ -1 +0,0 @@
*.pdf filter=lfs diff=lfs merge=lfs -text

Binary file not shown.

Binary file not shown.

View File

@@ -5,7 +5,6 @@
agenix.inputs.nixpkgs.follows = "nixpkgs";
bscpkgs.url = "git+https://git.sr.ht/~rodarima/bscpkgs";
bscpkgs.inputs.nixpkgs.follows = "nixpkgs";
self.lfs = false;
};
outputs = { self, nixpkgs, agenix, bscpkgs, ... }:

View File

@@ -4,7 +4,7 @@
environment.systemPackages = with pkgs; [
vim wget git htop tmux pciutils tcpdump ripgrep nix-index nixos-option
nix-diff ipmitool freeipmi ethtool lm_sensors cmake gnumake file tree
ncdu config.boot.kernelPackages.perf ldns pv git-lfs
ncdu config.boot.kernelPackages.perf ldns pv
# From bsckgs overlay
osumb
];

View File

@@ -26,7 +26,5 @@
SENDMAIL_ARGS = "--";
};
};
lfs.enable = true;
};
}

View File

@@ -39,7 +39,6 @@ in
rewrite ^/git/(.*) /$1 break;
proxy_pass http://127.0.0.1:3000;
proxy_redirect http:// $scheme://;
client_max_body_size 64M;
}
location /cache {
rewrite ^/cache/(.*) /$1 break;
@@ -68,6 +67,9 @@ in
location /p/ {
alias /var/lib/p/;
}
location /pub/ {
alias /vault/pub/;
}
'';
};
};