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

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