8 Commits

Author SHA1 Message Date
be8c150b08 Disable flake LFS 2025-09-17 12:40:06 +02:00
f9d4a70791 Increase body to 64 MiB for Gitea LFS 2025-09-17 12:19:56 +02:00
729e2d3833 Track PDFs with Git LFS 2025-09-17 12:06:27 +02:00
54ad962719 Add git-lfs client to all machines 2025-09-17 11:53:58 +02:00
8697fc0a18 Enable Git LFS in Gitea 2025-09-17 11:45:14 +02:00
d3b355f651 Add /nfs/home to fox documentation
Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es>
2025-09-03 15:34:05 +02:00
2ed881cd89 Mount home via NFS from apex in fox
Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es>
2025-09-03 15:34:02 +02:00
2a07df1d30 Allow access to NFS via wireguard subnet
Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es>
2025-09-03 15:33:47 +02:00
9 changed files with 6 additions and 1 deletions

1
.gitattributes vendored Normal file
View File

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

Binary file not shown.

Binary file not shown.

View File

@@ -5,6 +5,7 @@
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
ncdu config.boot.kernelPackages.perf ldns pv git-lfs
# From bsckgs overlay
osumb
];

View File

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

View File

@@ -39,6 +39,7 @@ 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;