network/nix/nixos-module/defaults.nix

53 lines
1.3 KiB
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"
];
# 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 = "";
# for vm-packages
2021-03-31 01:23:58 +02:00
virtualisation = lib.optionalAttrs (builtins.hasAttr "qemu" options.virtualisation) {
2021-04-10 14:52:13 +02:00
# larger than the defaults
memorySize = 8192;
2021-04-10 14:52:13 +02:00
cores = 2;
diskSize = 8192;
2021-04-10 14:52:13 +02:00
# 9P performance optimization that quelches a qemu warning
msize = 65536;
# allow building packages
writableStore = true;
2021-04-10 14:52:13 +02:00
# keep the store paths built inside the VM across reboots
writableStoreUseTmpfs = false;
2021-03-31 01:23:58 +02:00
qemu.options = [ "-enable-kvm" ];
};
system.stateVersion = "20.09";
2021-03-05 20:05:50 +01:00
}