about summary refs log tree commit diff
path: root/nixos/default.nix
blob: 65bff77994d41814cb811a7fb690c97a854ab467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ self, unstable, ... } @ inputs:

{
  alpha = self.lib.mkSystem {
    name = "alpha";
    nixpkgs = unstable;
    overlays = with inputs; [ chaotic-nixpkgs.overlay ];
    extraModules = [
      ./modules/security.nix
      ./modules/cachix
    ];
  };
}