42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
let metadata = pkgs.callPackage ../../../ops/metadata/peers.nix { };
|
|
in {
|
|
imports = [ ./hardware-configuration.nix ./zfs.nix ];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.supportedFilesystems = [ "zfs" ];
|
|
boot.zfs.devNodes = "/dev/disk/by-partuuid";
|
|
boot.kernelParams = [ "zfs.zfs_arc_max=1073741824" ];
|
|
|
|
networking.interfaces.enp2s0.useDHCP = true;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
boot.kernel.sysctl = {
|
|
"net.ipv4.ip_forward" = 1;
|
|
"net.ipv6.conf.all.forwarding" = 1;
|
|
};
|
|
|
|
services.openssh.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ wget vim zfs ];
|
|
|
|
services.zfs.autoScrub.enable = true;
|
|
services.zfs.autoSnapshot.enable = true;
|
|
services.zfs.trim.enable = true;
|
|
|
|
# cadey.cpu = {
|
|
# enable = true;
|
|
# vendor = "intel";
|
|
# };
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
services.tailscale.enable = true;
|
|
virtualisation.libvirtd.enable = true;
|
|
}
|