templates/utils-generic/flake.nix
2023-04-05 22:21:07 +04:00

16 lines
309 B
Nix

{
inputs = {
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
];
};
}
);
}