blob: 40f68eda406335bff8dc46c4d2e28dfa7f8f3bd6 (
plain) (
blame)
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
|
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.nixfiles.modules.profiles.headless;
in {
config = mkIf cfg.enable {
nixfiles.modules = {
openssh.server.enable = true;
endlessh-go.enable = true;
fail2ban.enable = true;
node-exporter.enable = true;
promtail.enable = true;
};
# Pin version to prevent any surprises. Try keeping this up-to-date[1] with
# the latest LTS release + hardened patches (just in case).
#
# [1]: https://kernel.org
boot.kernelPackages = pkgs.linuxPackages_5_15_hardened;
nix = {
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
optimise = {
automatic = true;
dates = ["daily"];
};
};
services.udisks2.enable = false;
xdg.sounds.enable = false;
};
}
|