-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathflake.nix
executable file
·221 lines (187 loc) · 4.62 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
{
description = "Isabel's dotfiles";
outputs =
inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } { imports = [ ./modules/flake ]; };
inputs = {
# our main package supplier
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixpkgs-unstable";
# ref = "1da52dd49a127ad74486b135898da2cef8c62665";
};
# lix a good fork of nix
lix = {
url = "https://git.lix.systems/lix-project/lix/archive/main.tar.gz";
inputs = {
nixpkgs.follows = "nixpkgs";
pre-commit-hooks.follows = "";
nix2container.follows = "";
flake-compat.follows = "";
};
};
# improved support for darwin
darwin = {
type = "github";
owner = "isabelroses";
repo = "nix-darwin";
ref = "tools";
inputs.nixpkgs.follows = "nixpkgs";
};
# improved support for wsl
nixos-wsl = {
type = "github";
owner = "nix-community";
repo = "NixOS-WSL";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "";
};
};
# manage userspace with nix
home-manager = {
type = "github";
owner = "nix-community";
repo = "home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# bring all the mess together with flake-parts
flake-parts = {
type = "github";
owner = "hercules-ci";
repo = "flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
easy-hosts = {
type = "github";
owner = "tgirlcloud";
repo = "easy-hosts";
# url = "git+file:/Users/isabel/dev/easy-hosts";
};
### Flake management
# deploy systems remotely
deploy-rs = {
type = "github";
owner = "isabelroses";
repo = "deploy-rs";
ref = "no-fu";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-compat.follows = "";
};
};
### Security stuff
# secure-boot on nixos
lanzaboote = {
type = "github";
owner = "nix-community";
repo = "lanzaboote";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
pre-commit-hooks-nix.follows = "";
flake-compat.follows = "";
};
};
# Secrets, shhh
agenix = {
type = "github";
owner = "ryantm";
repo = "agenix";
inputs = {
nixpkgs.follows = "nixpkgs";
systems.follows = "systems";
darwin.follows = "";
home-manager.follows = "";
};
};
### Additional packages
# a plain simple way to host a mail server
simple-nixos-mailserver = {
type = "gitlab";
owner = "simple-nixos-mailserver";
repo = "nixos-mailserver";
inputs = {
nixpkgs.follows = "nixpkgs";
nixpkgs-24_11.follows = "";
flake-compat.follows = "";
};
};
cosmic = {
type = "github";
owner = "lilyinstarlight";
repo = "nixos-cosmic";
inputs = {
nixpkgs.follows = "nixpkgs";
nixpkgs-stable.follows = "";
flake-compat.follows = "";
};
};
homebrew = {
type = "github";
owner = "zhaofengli";
repo = "nix-homebrew";
inputs = {
nixpkgs.follows = "nixpkgs";
nix-darwin.follows = "darwin";
};
};
# a tree-wide formatter
treefmt-nix = {
type = "github";
owner = "numtide";
repo = "treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
### misc
# declarative theme management
catppuccin = {
type = "github";
owner = "Lichthagel";
repo = "catppuccin-nix";
ref = "feat/gitea-forgejo";
inputs.nixpkgs.follows = "nixpkgs";
};
evergarden = {
type = "github";
owner = "comfysage";
repo = "evergarden";
inputs.nixpkgs.follows = "nixpkgs";
};
### my programs
beapkgs = {
type = "github";
owner = "tgirlcloud";
repo = "beapkgs";
# url = "git+file:/home/isabel/dev/tgirlcloud/beapkgs";
inputs.nixpkgs.follows = "nixpkgs";
};
izvim = {
type = "github";
owner = "isabelroses";
repo = "nvim";
inputs = {
nixpkgs.follows = "nixpkgs";
systems.follows = "systems";
beapkgs.follows = "beapkgs";
};
};
ivy = {
type = "github";
owner = "comfysage";
repo = "ivy";
inputs = {
nixpkgs.follows = "nixpkgs";
systems.follows = "systems";
beapkgs.follows = "beapkgs";
};
};
# transative deps
systems = {
type = "github";
owner = "nix-systems";
repo = "default";
};
};
}