blob: 9c7c532b9d36360b96f0e1fa0bc629d6061478da (
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 (import ./overlays/tuigreet.nix) ];
extraModules = [
inputs.sops-nix.nixosModules.sops
./modules/security.nix
./modules/cachix
./alpha/configuration.nix
];
};
}
|