Nix configurations for my homelab
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

update nixpkgs pr inputs

- bluesky-pds was merged
- zeroc-ice was merged but not in nixos-unstable-small yet

yemou 927cf408 dfa7c3b0

+11 -33
+9 -26
flake.lock
··· 111 111 ] 112 112 }, 113 113 "locked": { 114 - "lastModified": 1767436299, 115 - "narHash": "sha256-cDngitiDNpW96xNXlEeX2hvCHP3AqxTx+fBJAG0IeLU=", 114 + "lastModified": 1767437240, 115 + "narHash": "sha256-OA0dBHhccdupFXp+/eaFfb8K1dQxk61in4aF5ITGVX8=", 116 116 "owner": "nix-community", 117 117 "repo": "home-manager", 118 - "rev": "99a037de183a3e1d0dcfc5ec6dd5e5e03938bcd3", 118 + "rev": "1cfa305fba94468f665de1bd1b62dddf2e0cb012", 119 119 "type": "github" 120 120 }, 121 121 "original": { ··· 234 234 "type": "github" 235 235 } 236 236 }, 237 - "nixpkgs-pr-475870-bluesky-pds": { 238 - "locked": { 239 - "lastModified": 1767270156, 240 - "narHash": "sha256-O5D7oaqLxv6Zpv2JleUBN/mGQ1x2kiRbKqD92Vnjh6M=", 241 - "owner": "isabelroses", 242 - "repo": "nixpkgs", 243 - "rev": "936bbe421f02b46c6cc488ba4aa7dbbfec3a694f", 244 - "type": "github" 245 - }, 246 - "original": { 247 - "owner": "isabelroses", 248 - "ref": "bluesky-pds", 249 - "repo": "nixpkgs", 250 - "type": "github" 251 - } 252 - }, 253 237 "nixpkgs-pr-475929-zeroc-ice": { 254 238 "locked": { 255 - "lastModified": 1767282268, 256 - "narHash": "sha256-DFrGQj97ig8w4x9AqmZTW25VhWDsHqv4IVasHuIBfy4=", 257 - "owner": "Scrumplex", 239 + "lastModified": 1767433287, 240 + "narHash": "sha256-LEPoCETXk0jAc9hedsdTc19gnbP17lpE9IeA/niVJ5E=", 241 + "owner": "NixOS", 258 242 "repo": "nixpkgs", 259 - "rev": "bc04cb9ef29eee78033bc597d91b5f4b86e8ffe9", 243 + "rev": "169c0af98e5b73d85aa76a4b89d5399c3a65c12d", 260 244 "type": "github" 261 245 }, 262 246 "original": { 263 - "owner": "Scrumplex", 264 - "ref": "pkgs/zeroc-ice/fix-build-failure", 247 + "owner": "NixOS", 248 + "ref": "169c0af98e5b73d85aa76a4b89d5399c3a65c12d", 265 249 "repo": "nixpkgs", 266 250 "type": "github" 267 251 } ··· 372 356 "home-manager": "home-manager", 373 357 "impermanence": "impermanence", 374 358 "nixpkgs": "nixpkgs", 375 - "nixpkgs-pr-475870-bluesky-pds": "nixpkgs-pr-475870-bluesky-pds", 376 359 "nixpkgs-pr-475929-zeroc-ice": "nixpkgs-pr-475929-zeroc-ice", 377 360 "nixpkgs-stable": "nixpkgs-stable", 378 361 "nixpkgs-unstable": "nixpkgs-unstable",
+1 -2
flake.nix
··· 23 23 roc-lang.url = "github:roc-lang/roc"; 24 24 tangled.url = "git+https://tangled.org/tangled.org/core?ref=refs/tags/v1.11.0-alpha"; 25 25 26 - nixpkgs-pr-475929-zeroc-ice.url = "github:Scrumplex/nixpkgs?ref=pkgs/zeroc-ice/fix-build-failure"; 27 - nixpkgs-pr-475870-bluesky-pds.url = "github:isabelroses/nixpkgs?ref=bluesky-pds"; 26 + nixpkgs-pr-475929-zeroc-ice.url = "github:NixOS/nixpkgs?ref=169c0af98e5b73d85aa76a4b89d5399c3a65c12d"; 28 27 }; 29 28 30 29 outputs =
+1 -5
modules/services/pds.nix
··· 1 - { config, nixpkgs-pr-475870-bluesky-pds, ... }: 1 + { config, ... }: 2 2 { 3 - nixpkgs.overlays = [ 4 - (final: prev: { inherit (nixpkgs-pr-475870-bluesky-pds.legacyPackages.${prev.system}) bluesky-pds; }) 5 - ]; 6 - 7 3 environment.persistence."/data/persistent".directories = [ 8 4 { 9 5 directory = "/var/lib/pds";