blob: c8af86497c25c91996222ec99fab798108dae2ba (
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
|
{ self, unstable, unstable-small, ... } @ inputs:
{
alpha = self.lib.mkSystem {
name = "alpha";
nixpkgs = unstable;
overlays = with inputs; [ chaotic-nixpkgs.overlay ];
extraModules = [
./modules/security.nix
./modules/cachix
inputs.sops-nix.nixosModules.sops
];
};
beta = self.lib.mkSystem {
name = "beta";
system = "aarch64-linux";
nixpkgs = unstable-small;
overlays = with inputs; [ chaotic-nixpkgs.overlay ];
extraModules = [
./modules/security.nix
];
};
kompakt = self.lib.mkSystem {
name = "kompakt";
system = "aarch64-linux";
nixpkgs = unstable-small;
extraModules = [
inputs.sops-nix.nixosModules.sops
inputs.impermanence.nixosModules.impermanence
];
};
}
|