about summary refs log tree commit diff
path: root/nixos/default.nix
blob: d1937d4a5fb7f6612c285c86bdef5d071ba6604f (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/tuigreet.nix) (import ./overlays/fix-156974.nix) ];
    extraModules = [
      inputs.sops-nix.nixosModules.sops
      ./modules/security.nix
      ./modules/cachix
    ];
  };
}