-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
33 lines (31 loc) · 1.23 KB
/
flake.nix
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
{
description = "Application architecture reference for identity management";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
outputs = { self, nixpkgs, ... }: {
devShell = nixpkgs.lib.genAttrs nixpkgs.lib.platforms.unix
(system:
import ./shell.nix {
pkgs = import nixpkgs { inherit system; };
}
);
devShells = nixpkgs.lib.genAttrs nixpkgs.lib.platforms.unix
(system:
{
identityFoundationAccount = import ./identity-foundation-account/shell.nix {
pkgs = import nixpkgs { inherit system; };
};
identityFoundationApp = import ./identity-foundation-app/shell.nix {
pkgs = import nixpkgs { inherit system; };
};
identityFoundationFactory = import ./identity-foundation-factory/shell.nix {
pkgs = import nixpkgs { inherit system; };
};
identityFoundationInfrastructure = import ./identity-foundation-infrastructure/shell.nix {
pkgs = import nixpkgs { inherit system; };
};
identityFoundationOathkeeper = import ./identity-foundation-oathkeeper/shell.nix {
pkgs = import nixpkgs { inherit system; };
};
});
};
}