about summary refs log tree commit diff
path: root/nixos/default.nix
blob: e1b725a07a34dce0520328808f32469d3d89f805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
    nixpkgs = unstable-small;
    extraModules = [
      ./modules/security.nix
    ];
  };
}