update: new rig

This commit is contained in:
FabricSoul 2025-06-05 23:57:58 -04:00
parent 8eb51a0071
commit d023c75ae5
4 changed files with 41 additions and 15 deletions

View file

@ -26,6 +26,7 @@
greetd.tuigreet
zsh
home-manager
findutils
];
# Enable the OpenSSH daemon

View file

@ -19,6 +19,7 @@
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = ["nfs"];
# Networking
networking = {
@ -35,6 +36,25 @@
shell = pkgs.zsh;
};
services.rpcbind.enable = true;
fileSystems."/home/fabric/nas" = {
device = "tatara:/nas";
fsType = "nfs";
options = [
"x-systemd.automount"
"noauto"
"x-systemd.idle-timeout=60"
"x-systemd.device-timeout=5"
"x-systemd.mount-timeout=5"
"nfsvers=4" # Use NFSv4
"hard" # Hard mount (recommended)
"intr" # Allow interruption
"rsize=8192" # Read size
"wsize=8192" # Write size
];
};
# Enable Ollama with CUDA
services.ollama = {
enable = true;