chore: Bump Nixpkgs

This commit is contained in:
2025-06-21 11:34:30 -06:00
parent c9b9c00793
commit e6d1bd3b64
2 changed files with 10 additions and 10 deletions

View File

@@ -5,19 +5,19 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = { self, nixpkgs }:
outputs = inputs@{ self, ... }:
let
forAllSystems = nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed;
in
{
lib = inputs.nixpkgs.lib;
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
in {
legacyPackages = forAllSystems (system: import ./default.nix {
pkgs = import nixpkgs { inherit system; };
pkgs = import inputs.nixpkgs { inherit system; };
});
packages =
forAllSystems (system:
nixpkgs.lib.filterAttrs
(_: v: nixpkgs.lib.isDerivation v)
lib.filterAttrs
(_: v: lib.isDerivation v)
self.legacyPackages.${system});
};
}