2022-05-26 23:43:22 +01:00
|
|
|
{
|
|
|
|
description = "A basic flake from samw";
|
|
|
|
inputs = {
|
|
|
|
utils.url = "github:numtide/flake-utils";
|
|
|
|
devshell.url = "github:numtide/devshell";
|
|
|
|
};
|
2022-06-19 15:20:35 +01:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
utils,
|
|
|
|
devshell,
|
|
|
|
}:
|
2022-06-19 15:23:36 +01:00
|
|
|
utils.lib.eachDefaultSystem (system: let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
2022-05-26 23:43:22 +01:00
|
|
|
|
2022-06-19 15:23:36 +01:00
|
|
|
overlays = [devshell.overlay];
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
devShells.default = pkgs.devshell.mkShell {packages = with pkgs; [];};
|
|
|
|
formatter = pkgs.alejandra;
|
2022-05-26 23:43:22 +01:00
|
|
|
});
|
|
|
|
}
|