-
Notifications
You must be signed in to change notification settings - Fork 10
/
flake.nix
82 lines (68 loc) · 1.93 KB
/
flake.nix
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
nixConfig.extra-experimental-features = [ "pipe-operators" ];
inputs = {
devshell = {
url = "github:numtide/devshell";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
FULLCALENDAR = {
flake = false;
url = "https://cdn.jsdelivr.net/npm/fullcalendar@6.0.2/index.global.min.js";
};
FULLCALENDAR_RRULE = {
flake = false;
url = "https://cdn.jsdelivr.net/npm/@fullcalendar/rrule@6.0.2/index.global.min.js";
};
INVERTICAT_LOGO = {
flake = false;
url = "https://raw.githubusercontent.com/primer/octicons/v19.0.0/icons/mark-github-16.svg";
};
nci = {
url = "github:yusdacra/nix-cargo-integration";
inputs = {
nixpkgs.follows = "nixpkgs";
parts.follows = "flake-parts";
treefmt.follows = "treefmt-nix";
};
};
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
RRULE = {
flake = false;
url = "https://cdn.jsdelivr.net/npm/rrule@2.7.2/dist/es5/rrule.min.js";
};
systems.url = "github:nix-systems/default";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
TWITTER_LOGO = {
flake = false;
url = "https://cdn.svgporn.com/logos/twitter.svg";
};
YOUTUBE_LOGO = {
flake = false;
url = "https://upload.wikimedia.org/wikipedia/commons/0/09/YouTube_full-color_icon_%282017%29.svg";
};
ZULIP_LOGO = {
flake = false;
url = "https://raw.githubusercontent.com/zulip/zulip/main/static/images/logo/zulip-icon-square.svg";
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
./crates/builder
./default.nix
./deploy-preview.nix
./devmode.nix
./fmt.nix
./nci.nix
./systems.nix
];
};
}