nix machine / user configurations

update website

ptr.pet 885389ce 8ee102ba

verified
Changed files
+10 -10
_sources
hosts
trimounts
+4 -4
_sources/generated.json
··· 22 22 }, 23 23 "blog": { 24 24 "cargoLocks": null, 25 - "date": "2025-10-11", 25 + "date": "2025-12-01", 26 26 "extract": null, 27 27 "name": "blog", 28 28 "passthru": null, ··· 32 32 "fetchSubmodules": false, 33 33 "leaveDotGit": false, 34 34 "name": null, 35 - "rev": "4705c8e9339683f0ed947224de5be50a41399bfd", 36 - "sha256": "sha256-Zv1R9k4483aZQS0uhBm4jmnGmpOS1fJc10rsXntdz5I=", 35 + "rev": "f79ac2a83647e8535511e33feb32fe5525f3ea74", 36 + "sha256": "sha256-6WHoN48jfXJy95E/NHCBD6QdHLEXE6dsxtGAWsz3s4w=", 37 37 "sparseCheckout": [], 38 38 "type": "git", 39 39 "url": "https://tangled.org/@ptr.pet/endpoint" 40 40 }, 41 - "version": "4705c8e9339683f0ed947224de5be50a41399bfd" 41 + "version": "f79ac2a83647e8535511e33feb32fe5525f3ea74" 42 42 }, 43 43 "clickee-proxy": { 44 44 "cargoLocks": null,
+4 -4
_sources/generated.nix
··· 15 15 }; 16 16 blog = { 17 17 pname = "blog"; 18 - version = "4705c8e9339683f0ed947224de5be50a41399bfd"; 18 + version = "f79ac2a83647e8535511e33feb32fe5525f3ea74"; 19 19 src = fetchgit { 20 20 url = "https://tangled.org/@ptr.pet/endpoint"; 21 - rev = "4705c8e9339683f0ed947224de5be50a41399bfd"; 21 + rev = "f79ac2a83647e8535511e33feb32fe5525f3ea74"; 22 22 fetchSubmodules = false; 23 23 deepClone = false; 24 24 leaveDotGit = false; 25 25 sparseCheckout = [ ]; 26 - sha256 = "sha256-Zv1R9k4483aZQS0uhBm4jmnGmpOS1fJc10rsXntdz5I="; 26 + sha256 = "sha256-6WHoN48jfXJy95E/NHCBD6QdHLEXE6dsxtGAWsz3s4w="; 27 27 }; 28 - date = "2025-10-11"; 28 + date = "2025-12-01"; 29 29 }; 30 30 clickee-proxy = { 31 31 pname = "clickee-proxy";
+1 -1
hosts/trimounts/disk-config.nix
··· 33 33 extraArgs = [ "-f" ]; # Override existing partition 34 34 mountpoint = "/"; 35 35 mountOptions = [ 36 - "compress=zstd" 36 + "compress-force=zstd:3" 37 37 "noatime" 38 38 ]; 39 39 };
+1 -1
hosts/trimounts/modules/website.nix
··· 7 7 let 8 8 PUBLIC_BASE_URL = "https://gaze.systems"; 9 9 modules = (pkgs.callPackage "${inputs.blog}/nix/modules.nix" { }).overrideAttrs (_: { 10 - outputHash = "sha256-rzfSfiK8FSNFR+1QTwM/ltLZBprG9BoQsPmOt6IdXFc="; 10 + # outputHash = "sha256-rzfSfiK8FSNFR+1QTwM/ltLZBprG9BoQsPmOt6IdXFc="; 11 11 }); 12 12 pkg = pkgs.callPackage "${inputs.blog}/nix" { 13 13 inherit PUBLIC_BASE_URL;