aboutsummaryrefslogtreecommitdiffstats
path: root/tmpl/default/flake.nix
blob: ba44846c720cc720124b11bc24a6c884919a72e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    flake-parts.url = "github:hercules-ci/flake-parts/main";
    systems.url = "github:nix-systems/default/main";
  };

  outputs = inputs@{ systems, flake-parts, ... }:
    flake-parts.lib.mkFlake { inherit inputs; } {
      systems = import systems;
  
      perSystem = { pkgs, ... }: {
        devShells.default = pkgs.mkShell {};
      };
    };
}