blob: 31d1a612ee6364030ab8bcaa45832fd01586c9f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ 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
];
};
beta = self.lib.mkSystem {
name = "beta";
system = "aarch64-linux";
nixpkgs = unstable-small;
overlays = with inputs; [ chaotic-nixpkgs.overlay ];
extraModules = [
./modules/security.nix
];
};
}
|