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