blob: 880b3955375ece0cedc4da1215db02148c84bd8f (
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
45
46
|
{
self,
config,
lib,
flake-parts-lib,
...
}:
let
inherit (lib)
filterAttrs
mapAttrs
mkOption
optionalAttrs
types
;
inherit (flake-parts-lib)
mkSubmoduleOptions
mkPerSystemOption
;
in
{
options = {
flake = mkSubmoduleOptions {
websites = mkOption { };
};
perSystem = mkPerSystemOption (
{ pkgs, ... }:
{
_file = ./option.nix;
options = {
websites = mkOption {
type =
with types;
lazyAttrsOf (submoduleWith {
specialArgs = { inherit pkgs; };
modules = [ ./framework ];
});
};
};
}
);
};
config.transposition.websites = { };
}
|