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

{
  alpha = self.lib.mkSystem {
    name = "alpha";
    nixpkgs = unstable-small;
    # TODO: fix-156974 - https://github.com/NixOS/nixpkgs/pull/156974
    overlays = with inputs; [ chaotic-nixpkgs.overlay (import ./overlays/fix-156974.nix) ];
    extraModules = [
      inputs.sops-nix.nixosModules.sops
      ./modules/security.nix
      ./modules/cachix
    ];
  };
}