pinwheel: Inject src path in flake templates for skal

This commit is contained in:
Alexander Heldt
2023-11-11 16:14:09 +01:00
parent 16199dd192
commit ea9de56810
2 changed files with 16 additions and 1 deletions

View File

@@ -10,6 +10,17 @@
systems = [ "x86_64-linux" ];
in
{
packages = nixpkgs.lib.genAttrs systems (system:
# let
# pkgs = nixpkgs.legacyPackages.${system};
# in
{
default = {
src = SRC_PATH;
};
}
);
devShells = nixpkgs.lib.genAttrs systems (system:
let
pkgs = nixpkgs.legacyPackages.${system};