blob: 9d65dfc4bcaed2dfbe5edd913d0a76737bf65bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ 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;
extraModules = [
./modules/security.nix
];
};
}
|