7 lines
185 B
Nix
7 lines
185 B
Nix
{
|
|
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = import nixpkgs { inherit system; };
|
|
in {
|
|
devShell = pkgs.mkShell {};
|
|
});
|
|
}
|