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

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