-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathflake.nix
271 lines (264 loc) · 8.18 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
{
description = "A simple flake for an atomic system";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
nur.url = "github:nix-community/NUR";
nixvim = {
url = "github:Sly-Harvey/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixpkgs,
nixpkgs-stable,
...
} @ inputs: let
# User configuration
username = "kepler"; # no need to touch this since install.sh uses sed to replace this (otherwise if manually installing then you need to change this yourself)
terminal = "kitty"; # kitty or alacritty
terminalFileManager = "yazi"; # yazi or lf
wallpaper = "cyberpunk.png"; # see modules/themes/wallpapers
# System configuration
gpuDriver = "nvidia"; # CHOOSE YOUR GPU DRIVERS (nvidia or amdgpu) THIS IS IMPORTANT
hostname = "NixOS"; # CHOOSE A HOSTNAME HERE
locale = "en_GB.UTF-8"; # CHOOSE YOUR LOCALE
timezone = "Europe/London"; # CHOOSE YOUR TIMEZONE
kbdLayout = "gb"; # CHOOSE YOUR KEYBOARD LAYOUT (command: localectl list-x11-keymap-layouts)
kbdVariant = "extd"; # CHOOSE YOUR KEYBOARD LAYOUT VARIANT (Can leave empty or localectl list-x11-keymap-variants)
consoleKeymap = "uk"; # CHOOSE YOUR CONSOLE KEYMAP (Affects the tty?)
system = "x86_64-linux"; # most users will be on 64 bit pcs
# When defining variables above, make sure to add them here.
specialArgs = {
inherit
pkgs-stable
username
terminal
terminalFileManager
wallpaper
system
gpuDriver
locale
timezone
hostname
kbdLayout
kbdVariant
consoleKeymap
;
};
# No need to mess with these (They're for the devShell)
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
config.nvidia.acceptLicense = true;
overlays = [pkgs-stable];
};
pkgs-stable = _final: _prev: {
stable = import nixpkgs-stable {
inherit system;
config.allowUnfree = true;
config.nvidia.acceptLicense = true;
};
};
in
{
nixosConfigurations = { # Define systems here
Default = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = (specialArgs // {inherit inputs;}) // inputs;
modules = [./hosts/Default/configuration.nix];
};
};
devShells.${system} = {
default = pkgs.mkShell {
packages = with pkgs; [
git
nix
home-manager
figlet
lolcat
];
NIX_CONFIG = "extra-experimental-features = nix-command flakes";
};
};
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
}
// {
# To use a template do: nix flake init -t $templates#TEMPLATE_NAME"
templates = rec {
default = ./dev-shells/empty;
bun = {
path = ./dev-shells/bun;
description = "Bun development environment";
};
c-cpp = {
path = ./dev-shells/c-cpp;
description = "C/C++ development environment";
};
clojure = {
path = ./dev-shells/clojure;
description = "Clojure development environment";
};
csharp = {
path = ./dev-shells/csharp;
description = "C# development environment";
};
cue = {
path = ./dev-shells/cue;
description = "Cue development environment";
};
dhall = {
path = ./dev-shells/dhall;
description = "Dhall development environment";
};
elixir = {
path = ./dev-shells/elixir;
description = "Elixir development environment";
};
elm = {
path = ./dev-shells/elm;
description = "Elm development environment";
};
empty = {
path = ./dev-shells/empty;
description = "Empty dev template that you can customize at will";
};
gleam = {
path = ./dev-shells/gleam;
description = "Gleam development environment";
};
go = {
path = ./dev-shells/go;
description = "Go (Golang) development environment";
};
hashi = {
path = ./dev-shells/hashi;
description = "HashiCorp DevOps tools development environment";
};
haskell = {
path = ./dev-shells/haskell;
description = "Haskell development environment";
};
java = {
path = ./dev-shells/java;
description = "Java development environment";
};
jupyter = {
path = ./dev-shells/jupyter;
description = "Jupyter development environment";
};
kotlin = {
path = ./dev-shells/kotlin;
description = "Kotlin development environment";
};
latex = {
path = ./dev-shells/latex;
description = "LaTeX development environment";
};
lean4 = {
path = ./dev-shells/lean4;
description = "Lean 4 development environment";
};
nickel = {
path = ./dev-shells/nickel;
description = "Nickel development environment";
};
nim = {
path = ./dev-shells/nim;
description = "Nim development environment";
};
nix = {
path = ./dev-shells/nix;
description = "Nix development environment";
};
node = {
path = ./dev-shells/node;
description = "Node.js development environment";
};
ocaml = {
path = ./dev-shells/ocaml;
description = "OCaml development environment";
};
opa = {
path = ./dev-shells/opa;
description = "Open Policy Agent development environment";
};
php = {
path = ./dev-shells/php;
description = "PHP development environment";
};
platformio = {
path = ./dev-shells/platformio;
description = "PlatformIO development environment";
};
protobuf = {
path = ./dev-shells/protobuf;
description = "Protobuf development environment";
};
pulumi = {
path = ./dev-shells/pulumi;
description = "Pulumi development environment";
};
purescript = {
path = ./dev-shells/purescript;
description = "Purescript development environment";
};
python = {
path = ./dev-shells/python;
description = "Python development environment";
};
r = {
path = ./dev-shells/r;
description = "R development environment";
};
ruby = {
path = ./dev-shells/ruby;
description = "Ruby development environment";
};
rust = {
path = ./dev-shells/rust;
description = "Rust development environment";
};
rust-toolchain = {
path = ./dev-shells/rust-toolchain;
description = "Rust development environment with Rust version defined by a rust-toolchain.toml file";
};
scala = {
path = ./dev-shells/scala;
description = "Scala development environment";
};
shell = {
path = ./dev-shells/shell;
description = "Shell script development environment";
};
swi-prolog = {
path = ./dev-shells/swi-prolog;
description = "Swi-prolog development environment";
};
swift = {
path = ./dev-shells/swift;
description = "Swift development environment";
};
vlang = {
path = ./dev-shells/vlang;
description = "Vlang developent environment";
};
zig = {
path = ./dev-shells/zig;
description = "Zig development environment";
};
# Aliases
c = c-cpp;
cpp = c-cpp;
rt = rust-toolchain;
};
};
}