1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-27 17:07:44 +00:00

flake: devShells: use same pkgs as for packages output

This commit is contained in:
Jacob Birkett 2025-05-31 13:11:25 -07:00
parent 3caaa22f3e
commit 0f3d5d81dd

View file

@ -27,9 +27,11 @@
}) })
pkgsForEach; pkgsForEach;
devShells = forAllSystems (system: { devShells =
default = pkgsForEach.${system}.callPackage ./nix/shell.nix {}; nixpkgs.lib.mapAttrs (system: pkgs: {
}); default = pkgs.callPackage ./nix/shell.nix {};
})
pkgsForEach;
nixosModules = { nixosModules = {
superfreq = import ./nix/module.nix inputs; superfreq = import ./nix/module.nix inputs;