summaryrefslogtreecommitdiff
path: root/flake/dev-shells.nix
blob: 8d333a6b3fc83639296d0ba6af8b20b3e52e31b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  perSystem =
    {
      lib,
      pkgs,
      inputs',
      self',
      ...
    }:

    let
      inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
    in

    {
      devShells = {
        default = pkgs.mkShellNoCC {
          packages =
            [
              # We want to make sure we have the same
              # Nix behavior across machines
              pkgs.nix

              # For CI
              pkgs.actionlint

              # Nix tools
              pkgs.nil
              pkgs.statix
              self'.formatter

              pkgs.just
              pkgs.opentofu
            ]
            ++ lib.optionals isDarwin [
              # See above comment about Nix
              inputs'.nix-darwin.packages.darwin-rebuild
            ]
            ++ lib.optionals isLinux [
              # Ditto
              pkgs.nixos-rebuild

              inputs'.agenix.packages.agenix
            ];
        };
      };
    };
}