blob: 0e858536a3aab31f76b2a0a2cb09000dea28e98c (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
{ modulesPath, inputs, ... }:
{
imports = [
(modulesPath + "/profiles/minimal.nix")
./hardware-configuration.nix
./moyai.nix
./nixpkgs-tracker-bot.nix
./victoria-metrics.nix
inputs.self.nixosModules.default
];
borealis = {
profiles.server.enable = true;
};
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
catppuccin = {
forgejo.enable = true;
};
networking = {
domain = "getchoo.com";
hostName = "atlas";
firewall.allowedTCPPorts = [
80 # HTTP
443 # HTTPS
];
};
nixpkgs.hostPlatform = "aarch64-linux";
services = {
forgejo.enable = true;
grafana.enable = true;
hedgedoc.enable = true;
kanidm = {
enableClient = true;
enableServer = true;
};
miniflux = {
enable = true;
config = {
METRICS_COLLECTOR = 1;
};
};
nginx.enable = true;
};
system.stateVersion = "23.05";
}
|