about summary refs log tree commit diff
path: root/nixos/default.nix
blob: dd1dd18b3d9e679d53e632a5b6b4e33e5dc47268 (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;
    overlays = with inputs; [ chaotic-nixpkgs.overlay ];
    extraModules = [
      inputs.sops-nix.nixosModules.sops
      ./modules/security.nix
      ./modules/cachix
      ./alpha/configuration.nix
    ];
  };
}