summaryrefslogtreecommitdiff
path: root/dev/default.nix
blob: eff9cc339e6acf75efe58d7736b9cfbe16341a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  imports = [
    ./checks.nix
    ./devShell.nix
  ];

  perSystem =
    { pkgs, ... }:
    {
      formatter = pkgs.nixfmt-rfc-style;
    };
}