2023-12-15 12:40:04 +05:00
|
|
|
|
{ config, lib, ... }:
|
|
|
|
|
{
|
|
|
|
|
# Boot
|
|
|
|
|
boot = {
|
|
|
|
|
loader.systemd-boot.enable = true;
|
2024-01-06 18:05:24 +05:00
|
|
|
|
loader.systemd-boot.configurationLimit = 5;
|
2023-12-15 12:40:04 +05:00
|
|
|
|
loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
|
|
tmp.useTmpfs = lib.mkDefault true;
|
|
|
|
|
tmp.cleanOnBoot = lib.mkDefault (!config.boot.tmp.useTmpfs);
|
|
|
|
|
|
|
|
|
|
initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
|
|
|
|
initrd.kernelModules = [ ];
|
|
|
|
|
kernelModules = [ "kvm-amd" "tcp_bbr" "coretemp" "nct6775" ];
|
2024-01-06 18:05:24 +05:00
|
|
|
|
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
|
|
|
|
|
extraModprobeConfig = ''
|
|
|
|
|
options v4l2loopback devices=1 video_nr=1 card_label="OBS Camera" exclusive_caps=1
|
|
|
|
|
'';
|
2023-12-26 15:17:02 +05:00
|
|
|
|
kernelParams = [ "threadirqs" ];
|
2023-12-15 12:40:04 +05:00
|
|
|
|
|
|
|
|
|
kernel.sysctl = {
|
|
|
|
|
# The Magic SysRq key is a key combo that allows users connected to the
|
|
|
|
|
# system console of a Linux kernel to perform some low-level commands.
|
|
|
|
|
# Disable it, since we don't need it, and is a potential security concern.
|
|
|
|
|
"kernel.sysrq" = 0;
|
|
|
|
|
|
|
|
|
|
## TCP hardening
|
|
|
|
|
# Prevent bogus ICMP errors from filling up logs.
|
|
|
|
|
"net.ipv4.icmp_ignore_bogus_error_responses" = 1;
|
|
|
|
|
# Reverse path filtering causes the kernel to do source validation of
|
|
|
|
|
# packets received from all interfaces. This can mitigate IP spoofing.
|
|
|
|
|
"net.ipv4.conf.default.rp_filter" = 1;
|
|
|
|
|
"net.ipv4.conf.all.rp_filter" = 1;
|
|
|
|
|
# Do not accept IP source route packets
|
|
|
|
|
"net.ipv4.conf.all.accept_source_route" = 0;
|
|
|
|
|
"net.ipv6.conf.all.accept_source_route" = 0;
|
|
|
|
|
# Don't send ICMP redirects
|
|
|
|
|
"net.ipv4.conf.all.send_redirects" = 0;
|
|
|
|
|
"net.ipv4.conf.default.send_redirects" = 0;
|
|
|
|
|
# Refuse ICMP redirects (MITM mitigations)
|
|
|
|
|
"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;
|
|
|
|
|
# Protects against SYN flood attacks
|
|
|
|
|
"net.ipv4.tcp_syncookies" = 1;
|
|
|
|
|
# Incomplete protection again TIME-WAIT assassination
|
|
|
|
|
"net.ipv4.tcp_rfc1337" = 1;
|
|
|
|
|
|
|
|
|
|
## TCP optimization
|
|
|
|
|
# TCP Fast Open is a TCP extension that reduces network latency by packing
|
|
|
|
|
# data in the sender’s initial TCP SYN. Setting 3 = enable TCP Fast Open for
|
|
|
|
|
# both incoming and outgoing connections:
|
|
|
|
|
"net.ipv4.tcp_fastopen" = 3;
|
|
|
|
|
# Bufferbloat mitigations + slight improvement in throughput & latency
|
|
|
|
|
"net.ipv4.tcp_congestion_control" = "bbr";
|
|
|
|
|
"net.core.default_qdisc" = "cake";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Security
|
|
|
|
|
security = {
|
|
|
|
|
protectKernelImage = true;
|
|
|
|
|
acme.acceptTerms = true;
|
|
|
|
|
sudo.extraConfig = ''Defaults timestamp_timeout=30'';
|
|
|
|
|
rtkit.enable = true;
|
2023-12-26 15:17:02 +05:00
|
|
|
|
pam.loginLimits = [
|
|
|
|
|
{ domain = "@audio"; item = "memlock"; type = "-"; value = "unlimited"; }
|
|
|
|
|
{ domain = "@audio"; item = "rtprio"; type = "-"; value = "99"; }
|
|
|
|
|
{ domain = "@audio"; item = "nofile"; type = "soft"; value = "99999"; }
|
|
|
|
|
{ domain = "@audio"; item = "nofile"; type = "hard"; value = "99999"; }
|
2024-03-22 23:21:25 +05:00
|
|
|
|
{ domain = "*"; item = "nofile"; type = "-"; value = "524288"; }
|
|
|
|
|
{ domain = "*"; item = "memlock"; type = "-"; value = "524288"; }
|
2023-12-26 15:17:02 +05:00
|
|
|
|
];
|
2024-01-06 18:05:24 +05:00
|
|
|
|
polkit.enable = true;
|
2023-12-15 12:40:04 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.users.root.initialPassword = "nixos";
|
|
|
|
|
|
|
|
|
|
# Filesystem
|
|
|
|
|
fileSystems = {
|
|
|
|
|
"/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/77e1fc4b-31af-46e8-8b9c-907e4113b31b";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
"/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/92C6-2268";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
"/mnt/ext" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/4b47d83c-42da-4e78-b279-7726dfbdfde7";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2024-03-01 01:08:40 +05:00
|
|
|
|
|
|
|
|
|
"/mnt/ext2" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/8f8f6576-5608-4474-acb5-409c59dff696";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2023-12-15 12:40:04 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
services.fstrim.enable = true;
|
|
|
|
|
|
|
|
|
|
# Hardware etc
|
|
|
|
|
hardware = {
|
|
|
|
|
enableRedistributableFirmware = true;
|
|
|
|
|
|
|
|
|
|
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
|
|
|
|
|
nvidia.nvidiaSettings = true;
|
|
|
|
|
nvidia.modesetting.enable = true;
|
|
|
|
|
|
|
|
|
|
opengl.enable = true;
|
|
|
|
|
opengl.driSupport32Bit = true;
|
|
|
|
|
|
|
|
|
|
bluetooth.enable = true;
|
|
|
|
|
|
|
|
|
|
pulseaudio.enable = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sound.enable = true;
|
|
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
|
networkmanager.enable = true;
|
|
|
|
|
useDHCP = lib.mkDefault true;
|
|
|
|
|
hostName = "astora";
|
|
|
|
|
extraHosts = '''';
|
|
|
|
|
|
|
|
|
|
firewall = {
|
|
|
|
|
enable = true;
|
|
|
|
|
allowedTCPPorts = [ 80 443 ];
|
|
|
|
|
};
|
2024-01-10 22:32:33 +05:00
|
|
|
|
|
|
|
|
|
interfaces.wlo1.ipv4.addresses = [ {
|
|
|
|
|
address = "192.168.156.101";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
} ];
|
|
|
|
|
|
|
|
|
|
defaultGateway = "192.168.156.1";
|
|
|
|
|
nameservers = [ "192.168.156.1" "8.8.8.8" ];
|
2023-12-15 12:40:04 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Common
|
|
|
|
|
time.timeZone = "Asia/Yekaterinburg";
|
|
|
|
|
|
|
|
|
|
i18n = {
|
|
|
|
|
defaultLocale = "en_US.UTF-8";
|
|
|
|
|
extraLocaleSettings = {
|
|
|
|
|
LC_ADDRESS = "en_US.UTF-8";
|
|
|
|
|
LC_IDENTIFICATION = "en_US.UTF-8";
|
|
|
|
|
LC_MEASUREMENT = "en_US.UTF-8";
|
|
|
|
|
LC_MONETARY = "en_US.UTF-8";
|
|
|
|
|
LC_NAME = "en_US.UTF-8";
|
|
|
|
|
LC_NUMERIC = "en_US.UTF-8";
|
|
|
|
|
LC_PAPER = "en_US.UTF-8";
|
|
|
|
|
LC_TELEPHONE = "en_US.UTF-8";
|
|
|
|
|
LC_TIME = "en_US.UTF-8";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|