Files
nix/templates/default/flake.nix
2023-12-22 14:17:10 -05:00

28 lines
604 B
Nix

{
description = "A very basic flake";
inputs = {
# nixpkgs.url = "github:NixOS/nixpkgs/23.11";
sbrow.url = "github:sbrow/nix";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs@{ self, flake-parts, nixpkgs, sbrow }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];
perSystem = { pkgs, system, ... }: {
formatter = pkgs.nixpkgs-fmt;
devShells.default = pkgs.mkShell
{
buildInputs = with pkgs; [
# Your packages here
];
};
};
};
}