network/nix/nixos-module/defaults.nix

39 lines
888 B
Nix
Raw Normal View History

2021-03-31 01:23:58 +02:00
{ hostName, inputs, pkgs, options, lib, ... }:
2021-03-05 20:05:50 +01:00
{
boot.kernelParams = [
# No server/router runs any untrusted user code
"mitigations=off"
# Prevents automatic creation of interface bond0 by the kernel
"bonding.max_bonds=0"
];
boot.tmpOnTmpfs = true;
# Includes wireguard
boot.kernelPackages = pkgs.linuxPackages_latest;
2021-03-05 20:05:50 +01:00
nix = {
package = pkgs.nixFlakes;
extraOptions = "experimental-features = nix-command flakes";
registry = {
nixpkgs.flake = inputs.nixpkgs;
};
2021-03-05 20:05:50 +01:00
};
documentation = {
enable = false;
nixos.enable = false;
};
2021-03-05 20:05:50 +01:00
environment.systemPackages = with pkgs; [
vim screen git wget psmisc
tcpdump iputils mtr traceroute bmon iptables conntrack-tools
2021-04-06 22:09:50 +02:00
bridge-utils dhcpcd ethtool
2021-03-05 20:05:50 +01:00
];
networking.hostName = hostName;
2021-03-22 23:37:25 +01:00
users.users.root.initialHashedPassword = "";
system.stateVersion = "20.09";
2021-03-05 20:05:50 +01:00
}