-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
43 lines (37 loc) · 1.07 KB
/
default.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
{ config, pkgs, ... }:
{
imports = [
# WIP: ./mediamtx.nix
./nfs.nix
./searx.nix
./clamav.nix
./backups.nix
./grafana.nix
./duckdns.nix
# ./scrutiny.nix # Buggy with my external HDDs :(
./filesystem.nix
./media-stack.nix
./nginx/default.nix
./palworld-server.nix
./secrets/default.nix
./redbot-stardream.nix
./gradient-generator.nix
# ./project-zomboid-server.nix
./hardware-configuration.nix
./trilium-memory-repository.nix
];
networking.hostId = "b4ed7361";
gradient.presets.syncthing.enable = true;
gradient.profiles.catppuccin.enable = true;
gradient.profiles.graphics.enable = true;
environment.systemPackages = with pkgs; [
jdupes
];
gradient.substituters = {
briah = "ssh-ng://[email protected]?priority=60";
bernkastel = "ssh-ng://[email protected]?priority=40";
beatrice = "ssh-ng://[email protected]?priority=45";
erika = "ssh-ng://[email protected]?priority=50";
neith-deck = "ssh-ng://[email protected]?priority=100";
};
}