14 lines
394 B
Nix
14 lines
394 B
Nix
{
|
|
inputs = {
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
outputs = {self, nixpkgs, flake-utils, ...}@inputs:
|
|
flake-utils.lib.eachDefaultSystem
|
|
(system:
|
|
let pkgs = nixpkgs.legacyPackages.${system}; in
|
|
{
|
|
devShells.default = import ./shell.nix { inherit pkgs; };
|
|
}
|
|
);
|
|
}
|