nix: export package sets separately

This commit is contained in:
Primrose 2025-02-11 23:08:24 +01:00
parent 6272929c0c
commit 9f4cc03a9a
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 55 additions and 16 deletions

View file

@ -34,10 +34,10 @@
// import ./nix/deploy ctx
// (
let
inherit (import ./nix/packages ctx) packageOverlays packages;
inherit (import ./nix/packages ctx) packageOverlays packageSets packages;
inherit (import ./nix/overlays ctx) overlays;
in {
inherit packages;
inherit packageSets packages;
overlays = packageOverlays // overlays;
}
)
@ -49,6 +49,8 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
nixos-hardware.url = "github:NixOS/nixos-hardware";
home-manager = {