From 3fe2e94257cd711294e939052153b752d70ef485 Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 8 Jan 2024 01:25:50 +0100 Subject: [PATCH] Update hardware-configuration --- modules/hardware-configuration.nix | 66 ++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 modules/hardware-configuration.nix diff --git a/modules/hardware-configuration.nix b/modules/hardware-configuration.nix new file mode 100644 index 0000000..c3cf03a --- /dev/null +++ b/modules/hardware-configuration.nix @@ -0,0 +1,66 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "syscea/stateful/root"; + fsType = "zfs"; + }; + + fileSystems."/nix" = + { device = "syscea/ephemeral/nix"; + fsType = "zfs"; + }; + + fileSystems."/ugent" = + { device = "systemd-1"; + fsType = "autofs"; + }; + + fileSystems."/home/coolneng" = + { device = "syscea/stateful/home"; + fsType = "zfs"; + }; + + fileSystems."/tmp" = + { device = "syscea/ephemeral/tmp"; + fsType = "zfs"; + }; + + fileSystems."/home/coolneng/Downloads" = + { device = "syscea/stateful/home/downloads"; + fsType = "zfs"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/C374-A2FD"; + fsType = "vfat"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/1231a42f-a71a-4c67-b4d8-7506c02a8328"; } + ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wg0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlan0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}