-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
121 lines (110 loc) · 2.79 KB
/
flake.nix
File metadata and controls
121 lines (110 loc) · 2.79 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Flakes are a perfect example of bad design
{
description = "CriomOS";
outputs =
inputs:
let
nonSelfInputs = removeAttrs inputs [ "self" ];
in
import ./default.nix nonSelfInputs;
inputs = {
# Nixpkgs & lib
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
lib.url = "github:criome/lib";
lib.inputs.nixpkgs.follows = "nixpkgs";
# Nixpkgs overlays
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
# Nix ecosystem
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# Horizon
maisiliym.url = "github:LiGoldragon/maisiliym/testing";
goldragon.url = "github:LiGoldragon/goldragon";
seahawk.url = "github:criome/seahawk";
# Todo - binary cache
attic.url = "github:zhaofengli/attic";
# Styling
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
niri-flake = {
url = "github:sodiboo/niri-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
# System
kibord.url = "github:LiGoldragon/kibord/testing";
skrips.url = "github:criome/skrips/testing";
# Websites - TODO: bad design
mkZolaWebsite.url = "github:criome/mkZolaWebsite";
goldragonWebsite = {
url = "github:LiGoldragon/webpage";
flake = false;
};
seahawkWebsite = {
url = "github:AnaSeahawk/website";
flake = false;
};
# pkdjz
base16-styles = {
url = "github:samme/base16-styles";
flake = false;
};
base16-theme = {
url = "github:league/base16-emacs";
flake = false;
};
flake-registry = {
url = "github:NixOS/flake-registry";
flake = false;
};
flake-utils.url = "github:numtide/flake-utils";
gptel = {
url = "github:karthink/gptel";
flake = false;
};
jujutsu-el = {
url = "github:bennyandresen/jujutsu.el";
flake = false;
};
md-roam = {
url = "github:nobiot/md-roam";
flake = false;
};
mfgtools = {
url = "github:NXPmicro/mfgtools";
flake = false;
};
ndi = {
url = "github:LiGoldragon/ndi";
flake = false;
};
tree-sitter-capnp = {
url = "github:tree-sitter-grammars/tree-sitter-capnp";
flake = false;
};
superchat = {
url = "github:yibie/superchat";
flake = false;
};
tera-mode = {
url = "github:svavs/tera-mode";
flake = false;
};
ultra-scroll = {
url = "github:jdtsmith/ultra-scroll";
flake = false;
};
xah-fly-keys = {
url = "github:xahlee/xah-fly-keys";
flake = false;
};
};
}