forked from BastianAsmussen/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecurity.nix
More file actions
57 lines (49 loc) · 1.63 KB
/
security.nix
File metadata and controls
57 lines (49 loc) · 1.63 KB
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
{
flake.nixosModules.security = {pkgs, ...}: {
# Kernel hardening.
boot = {
kernel.sysctl = {
# Disable Magic SysRq key.
"kernel.sysrq" = 0;
## TCP Hardening
"net.ipv4.icmp_ignore_bogus_error_responses" = 1;
"net.ipv4.conf.default.rp_filter" = 1;
"net.ipv4.conf.all.rp_filter" = 1;
"net.ipv4.conf.all.accept_source_route" = 0;
"net.ipv6.conf.all.accept_source_route" = 0;
"net.ipv4.conf.all.send_redirects" = 0;
"net.ipv4.conf.default.send_redirects" = 0;
"net.ipv4.conf.all.accept_redirects" = 0;
"net.ipv4.conf.default.accept_redirects" = 0;
"net.ipv4.conf.all.secure_redirects" = 0;
"net.ipv4.conf.default.secure_redirects" = 0;
"net.ipv6.conf.all.accept_redirects" = 0;
"net.ipv6.conf.default.accept_redirects" = 0;
"net.ipv4.tcp_syncookies" = 1;
"net.ipv4.tcp_rfc1337" = 1;
## TCP Optimization
"net.ipv4.tcp_fastopen" = 3;
"net.ipv4.tcp_congestion_control" = "bbr";
"net.core.default_qdisc" = "cake";
};
kernelModules = ["tcp_bbr"];
};
# Security hardening
security = {
apparmor = {
enable = true;
enableCache = true;
killUnconfinedConfinables = true;
packages = [pkgs.apparmor-profiles];
};
protectKernelImage = true;
forcePageTableIsolation = true;
polkit.enable = true;
rtkit.enable = true;
sudo.enable = false;
sudo-rs.enable = true;
# Always flush L1 cache before entering a guest.
virtualisation.flushL1DataCache = "always";
};
};
}