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

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