L-Nafaryus
25a4c9af9c
All checks were successful
nix / check (push) Successful in 2m59s
astora: exclude hyprland and some tools for kde expansion lib.preconfiguredModules: common nixos configurations lib.preconfiguredModules.bonvim: change python tool set, remove deprecations packages.wezterm: exclude from evaluation [see #8] nixosModules.zapret: exclude from evaluation [see #9]
238 lines
5.7 KiB
Nix
238 lines
5.7 KiB
Nix
{
|
||
lib,
|
||
config,
|
||
pkgs,
|
||
...
|
||
}: {
|
||
# Nix settings
|
||
nix = {
|
||
settings = {
|
||
experimental-features = ["nix-command" "flakes"];
|
||
substituters = [
|
||
"https://cache.elnafo.ru"
|
||
"https://bonfire.cachix.org"
|
||
"https://nix-community.cachix.org"
|
||
];
|
||
trusted-public-keys = [
|
||
"cache.elnafo.ru:j3VD+Hn+is2Qk3lPXDSdPwHJQSatizk7V82iJ2RP1yo="
|
||
"bonfire.cachix.org-1:mzAGBy/Crdf8NhKail5ciK7ZrGRbPJJobW6TwFb7WYM="
|
||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||
];
|
||
auto-optimise-store = true;
|
||
};
|
||
gc = {
|
||
automatic = lib.mkDefault true;
|
||
dates = lib.mkDefault "weekly";
|
||
options = lib.mkDefault "--delete-older-than 7d";
|
||
};
|
||
};
|
||
|
||
# Filesystem
|
||
fileSystems = {
|
||
"/" = {
|
||
device = "/dev/disk/by-label/nixos";
|
||
fsType = "btrfs";
|
||
options = ["subvol=root" "compress=zstd"];
|
||
};
|
||
|
||
"/boot" = {
|
||
device = "/dev/disk/by-label/boot";
|
||
fsType = "vfat";
|
||
};
|
||
|
||
"/nix" = {
|
||
device = "/dev/disk/by-label/nixos";
|
||
fsType = "btrfs";
|
||
options = ["subvol=nix" "compress=zstd" "noatime"];
|
||
};
|
||
|
||
"/home" = {
|
||
device = "/dev/disk/by-label/nixos";
|
||
fsType = "btrfs";
|
||
options = ["subvol=home" "compress=zstd"];
|
||
};
|
||
|
||
"/swap" = {
|
||
device = "/dev/disk/by-label/nixos";
|
||
fsType = "btrfs";
|
||
options = ["subvol=swap" "noatime"];
|
||
};
|
||
};
|
||
|
||
swapDevices = [
|
||
{device = "/swap/swapfile";}
|
||
];
|
||
|
||
# Boot and kernel options
|
||
boot = {
|
||
loader.systemd-boot.enable = true;
|
||
loader.systemd-boot.configurationLimit = 5;
|
||
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 = ["tcp_bbr" "coretemp" "nct6775"];
|
||
kernelParams = ["threadirqs"];
|
||
|
||
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" = 1;
|
||
"net.ipv4.conf.wlo1.accept_source_route" = 1;
|
||
"net.ipv6.conf.all.accept_source_route" = 1;
|
||
# 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;
|
||
sudo.extraConfig = ''Defaults timestamp_timeout=30'';
|
||
rtkit.enable = true;
|
||
polkit.enable = true;
|
||
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";
|
||
}
|
||
{
|
||
domain = "*";
|
||
item = "nofile";
|
||
type = "-";
|
||
value = "524288";
|
||
}
|
||
{
|
||
domain = "*";
|
||
item = "memlock";
|
||
type = "-";
|
||
value = "524288";
|
||
}
|
||
];
|
||
};
|
||
|
||
# Hardware
|
||
hardware = {
|
||
enableRedistributableFirmware = true;
|
||
};
|
||
|
||
# Timezone and locale
|
||
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";
|
||
};
|
||
};
|
||
|
||
# Base packages
|
||
environment.systemPackages = with pkgs; [
|
||
wget
|
||
|
||
parted
|
||
ntfs3g
|
||
sshfs
|
||
exfat
|
||
btrfs-progs
|
||
btrbk
|
||
|
||
lm_sensors
|
||
btop
|
||
|
||
git
|
||
git-lfs
|
||
lazygit
|
||
|
||
nnn
|
||
fzf
|
||
ripgrep
|
||
fd
|
||
|
||
unzip
|
||
|
||
fishPlugins.fzf-fish
|
||
fishPlugins.tide
|
||
fishPlugins.grc
|
||
fishPlugins.hydro
|
||
grc
|
||
|
||
gnupg
|
||
pass
|
||
|
||
bat
|
||
];
|
||
|
||
programs = {
|
||
fish.enable = true;
|
||
|
||
neovim = {
|
||
enable = true;
|
||
defaultEditor = true;
|
||
};
|
||
};
|
||
}
|