about summary refs log tree commit diff
path: root/flake.nix
blob: a28c4c3fedd1c20c2ad3b0d5c7c70e335c0d846e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  description = "exotic.sh system flake";

  inputs = {
    unstable.url = "github:nixos/nixpkgs/nixos-unstable";
    unstable-small.url = "github:nixos/nixpkgs/nixos-unstable-small";
    nixpkgs-2111.url = "github:nixos/nixpkgs/nixos-21.11";

    sops-nix.url = "github:Mic92/sops-nix";
    sops-nix.inputs.nixpkgs.follows = "unstable";

    infra-modules.url = "git+https://git.exotic.sh/infra-modules";
    infra-modules.inputs.unstable.follows = "unstable";

    sefidel-web.url = "git+https://git.exotic.sh/pub/sefidel/sefidel-web";
  };

  outputs = { self, unstable, ... } @ inputs:
    let
      inherit (lib.my) mapModulesRec mapSystems;

      system = "x86_64-linux";

      pkgs = import unstable { inherit system; };

      lib = unstable.lib.extend
        (self: super: { my = import ./lib { inherit pkgs inputs; lib = self; }; });
    in
    {
      lib = lib.my;

      colmena = {
        meta = {
          nixpkgs = import unstable { inherit system; overlays = [ (import ./overlays) ]; };
          specialArgs = { inherit lib inputs system; };
        };
      }
      // mapSystems ./systems { };
    };
}