my nix configs for my servers and desktop

nfs

common/bluetooth.nix
+8 -1
hosts/valefar/default.nix
··· 25 26 system.stateVersion = "24.11"; 27 28 - # pin host platform & microcode 29 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 30 hardware.cpu.intel.updateMicrocode = lib.mkDefault 31 config.hardware.enableRedistributableFirmware; ··· 57 boot.zfs.extraPools = [ "garage" "storage" ]; 58 boot.zfs.devNodes = "/dev/disk/by-id"; 59 boot.zfs.forceImportAll = true; 60 61 /*boot.kernelParams = [ "ip=dhcp" ]; 62 boot.initrd = {
··· 25 26 system.stateVersion = "24.11"; 27 28 + # pin host platform & microcorre 29 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 30 hardware.cpu.intel.updateMicrocode = lib.mkDefault 31 config.hardware.enableRedistributableFirmware; ··· 57 boot.zfs.extraPools = [ "garage" "storage" ]; 58 boot.zfs.devNodes = "/dev/disk/by-id"; 59 boot.zfs.forceImportAll = true; 60 + 61 + services.nfs.server = { 62 + enable = true; 63 + exports = '' 64 + /storage *(rw,sync,no_subtree_check,no_root_squash) 65 + ''; 66 + }; 67 68 /*boot.kernelParams = [ "ip=dhcp" ]; 69 boot.initrd = {
modules/immich/default.nix
secrets/build-token.age
secrets/garage-admin-token.age
secrets/garage-metrics-token.age
secrets/garage-rpc-secret.age