update valefar

This commit is contained in:
waveringana 2025-06-06 02:39:49 -04:00
parent 542bfcb74e
commit d616cdca1f
2 changed files with 23 additions and 7 deletions

View file

@ -6,7 +6,7 @@
# Host-specific hardware # Host-specific hardware
./hardware.nix ./hardware.nix
./secrets.nix ./secrets.nix
../../common/nvidia.nix #../../common/nvidia.nix
# Common modules shared across hosts # Common modules shared across hosts
../../common/system.nix ../../common/system.nix
@ -44,10 +44,10 @@
services.resolved = { services.resolved = {
enable = true; enable = true;
dnssec = "true"; dnssec = "false";
domains = [ "~." ]; domains = [ "~." ];
fallbackDns = [ "10.0.0.210" "1.0.0.1#one.one.one.one" ]; fallbackDns = [ "10.0.0.210" "1.1.1.1" ];
dnsovertls = "true"; dnsovertls = "false";
}; };
boot.supportedFilesystems = [ "zfs" ]; boot.supportedFilesystems = [ "zfs" ];
@ -57,6 +57,21 @@
boot.zfs.devNodes = "/dev/disk/by-id"; boot.zfs.devNodes = "/dev/disk/by-id";
boot.zfs.forceImportAll = true; boot.zfs.forceImportAll = true;
/*boot.kernelParams = [ "ip=dhcp" ];
boot.initrd = {
availableKernelModules = [ "r8169" ];
network = {
enable = true;
ssh = {
enable = true;
port = 22;
authorizedKeys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0pU82lV9dSjkgYbdh9utZ5CDM2dPN70S5fBqN1m3Pb" ];
hostKeys = [ "/etc/secrets/initrd/ssh_host_rsa_key" ];
shell = "/bin/cryptsetup-askpass";
};
};
};*/
systemd.services.zfs-import-cache.enable = false; systemd.services.zfs-import-cache.enable = false;
systemd.services.zfs-import-scan.enable = true; systemd.services.zfs-import-scan.enable = true;

View file

@ -8,9 +8,9 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "uas" "sd_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "mpt3sas" "sd_mod" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {
@ -38,7 +38,7 @@
# Fan Control # Fan Control
hardware.fancontrol = { hardware.fancontrol = {
enable = true; enable = false;
config = '' config = ''
INTERVAL=10 INTERVAL=10
DEVPATH=hwmon1=devices/platform/nct6775.2592 hwmon2=devices/platform/coretemp.0 DEVPATH=hwmon1=devices/platform/nct6775.2592 hwmon2=devices/platform/coretemp.0
@ -59,5 +59,6 @@ MAXPWM=hwmon1/pwm2=150 hwmon1/pwm3=105
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true; # networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
} }