2022-11-13 21:45:50 +00:00
|
|
|
{ config, lib, pkgs, modules, sources, ... }:
|
2020-11-27 20:56:20 +00:00
|
|
|
|
2022-11-13 21:45:50 +00:00
|
|
|
{
|
2020-11-27 20:56:20 +00:00
|
|
|
imports = [
|
2021-01-10 23:53:41 +00:00
|
|
|
../modules
|
2020-11-27 20:56:20 +00:00
|
|
|
./users.nix
|
|
|
|
];
|
|
|
|
|
2021-07-29 20:31:14 +00:00
|
|
|
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages;
|
2020-11-27 20:56:20 +00:00
|
|
|
boot.kernelParams = [ "quiet" ];
|
|
|
|
|
|
|
|
networking.domain = lib.mkDefault "hacc.space";
|
|
|
|
|
2021-01-07 00:18:08 +00:00
|
|
|
services.journald.extraConfig = ''
|
|
|
|
SystemMaxUse=512M
|
|
|
|
MaxRetentionSec=48h
|
|
|
|
'';
|
2024-05-13 12:39:51 +00:00
|
|
|
nix.package = pkgs.lix;
|
2020-11-27 20:56:20 +00:00
|
|
|
nix.gc.automatic = lib.mkDefault true;
|
2023-02-15 20:23:44 +00:00
|
|
|
nix.gc.options = lib.mkDefault "--delete-older-than 7d";
|
2022-11-23 23:03:50 +00:00
|
|
|
nix.settings.trusted-users = [ "root" "@wheel" ];
|
2022-11-19 14:23:03 +00:00
|
|
|
nix.extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
2020-11-27 20:56:20 +00:00
|
|
|
environment.variables.EDITOR = "vim";
|
|
|
|
|
2020-12-03 20:54:49 +00:00
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
ports = lib.mkDefault [ 62954 ];
|
2023-06-06 00:04:11 +00:00
|
|
|
settings = {
|
|
|
|
X11Forwarding = true;
|
|
|
|
PermitRootLogin = "prohibit-password";
|
|
|
|
PasswordAuthentication = false;
|
|
|
|
KbdInteractiveAuthentication = false;
|
|
|
|
StreamLocalBindUnlink = true;
|
|
|
|
};
|
2020-12-03 20:54:49 +00:00
|
|
|
};
|
2022-11-13 19:26:48 +00:00
|
|
|
programs.mosh.enable = true;
|
2023-06-06 00:04:11 +00:00
|
|
|
programs.fish.enable = true;
|
2020-11-27 20:56:20 +00:00
|
|
|
security.sudo.wheelNeedsPassword = lib.mkDefault false;
|
|
|
|
|
|
|
|
i18n.defaultLocale = "en_IE.UTF-8";
|
|
|
|
console = {
|
|
|
|
font = "Lat2-Terminus16";
|
|
|
|
keyMap = "de";
|
|
|
|
};
|
|
|
|
programs.mtr.enable = true;
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
smartmontools lm_sensors htop tcpdump nload iftop
|
2021-12-25 17:56:29 +00:00
|
|
|
bottom
|
2022-01-19 21:11:10 +00:00
|
|
|
ripgrep vgrep
|
2020-11-27 20:56:20 +00:00
|
|
|
git wget
|
|
|
|
kitty.terminfo
|
|
|
|
rsync pv progress
|
|
|
|
parallel bc
|
|
|
|
usbutils pciutils
|
|
|
|
cryptsetup gptfdisk
|
|
|
|
zstd p7zip
|
|
|
|
file
|
|
|
|
whois
|
|
|
|
iperf
|
|
|
|
fd
|
2023-11-30 16:43:48 +00:00
|
|
|
eza
|
2020-11-27 20:56:20 +00:00
|
|
|
socat
|
|
|
|
tmux
|
|
|
|
gnupg
|
2021-12-25 17:56:29 +00:00
|
|
|
vim neovim
|
2020-11-27 20:56:20 +00:00
|
|
|
patchelf
|
|
|
|
binutils
|
|
|
|
dnsutils
|
|
|
|
flashrom ifdtool cbfstool nvramtool
|
|
|
|
nmap
|
2020-12-01 18:07:36 +00:00
|
|
|
s-tui stress
|
2020-12-01 20:00:13 +00:00
|
|
|
ffmpeg-full
|
2021-12-25 17:56:29 +00:00
|
|
|
bat
|
2022-02-04 07:51:39 +00:00
|
|
|
niv
|
2024-05-15 20:42:18 +00:00
|
|
|
sqlite-interactive
|
2024-10-25 16:49:04 +00:00
|
|
|
hacc-scripts
|
2020-11-27 20:56:20 +00:00
|
|
|
];
|
|
|
|
|
2022-11-09 23:52:41 +00:00
|
|
|
security.acme.defaults.email = "info+acme@hacc.space";
|
2020-11-29 01:41:34 +00:00
|
|
|
security.acme.acceptTerms = true;
|
2021-01-15 21:02:03 +00:00
|
|
|
|
2021-01-15 21:09:32 +00:00
|
|
|
services.nginx.appendHttpConfig = ''
|
2021-01-15 21:02:03 +00:00
|
|
|
access_log off;
|
2021-08-07 19:24:59 +00:00
|
|
|
add_header Permissions-Policy "interest-cohort=()";
|
2021-01-15 21:02:03 +00:00
|
|
|
'';
|
2021-01-15 22:45:34 +00:00
|
|
|
|
2021-07-29 20:31:14 +00:00
|
|
|
networking.nftables.enable = true;
|
2020-11-27 20:56:20 +00:00
|
|
|
}
|