-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
29 lines (27 loc) · 893 Bytes
/
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
{
description = "Infrastructure flake for nix.pizza";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.follows = "srvos/nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
devshell.url = "github:numtide/devshell";
flake-root.url = "github:srid/flake-root";
disko.url = "github:nix-community/disko";
srvos.url = "github:nix-community/srvos";
impermanence.url = "github:nix-community/impermanence";
agenix.url = "github:ryantm/agenix";
agenix-shell.url = "github:aciceri/agenix-shell";
simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./keys
./shell
./hosts
./formatting
./checks
./packages
];
systems = [ "x86_64-linux" "aarch64-linux" ];
};
}