blob: 40bd39d2a5c740c01bf027ec857a374f35926d0a (
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
41
42
43
44
|
{
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";
impermanence.url = "github:nix-community/impermanence";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "unstable";
nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
nixos-mailserver.inputs.nixpkgs.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;
nixosModules = mapModulesRec ./modules import;
colmena = {
meta = {
nixpkgs = import unstable { inherit system; overlays = [ (import ./overlays) ]; };
specialArgs = { inherit lib inputs system; };
};
}
// mapSystems ./systems { };
};
}
|