From a4f505335b0fad56b1851385abcba5f7d35ec72e Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 10 Jan 2025 02:32:29 -0800 Subject: finalize my iso installation medium --- desktop/configuration.nix | 14 ++++++++++++-- desktop/vars.nix | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) (limited to 'desktop') diff --git a/desktop/configuration.nix b/desktop/configuration.nix index 1e24cad..be88245 100644 --- a/desktop/configuration.nix +++ b/desktop/configuration.nix @@ -6,7 +6,6 @@ in imports = []; hardware = { - cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; enableRedistributableFirmware = true; }; @@ -52,7 +51,18 @@ in extraModulePackages = [ ]; initrd = { - availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" ]; + availableKernelModules = [ + "xhci_pci" + "ahci" + "usb_storage" + "sd_mod" + "nvme" + "sd_mod" + "ehci_pci" + "rtsx_pci_sdmmc" + "usbhid" + ]; + kernelModules = [ ]; }; diff --git a/desktop/vars.nix b/desktop/vars.nix index 760566b..3dbcd03 100644 --- a/desktop/vars.nix +++ b/desktop/vars.nix @@ -1,7 +1,7 @@ # Change the following variables { # set your host name. - hostName = "continuity-dell"; + hostName = "continuity"; # username used for unix username as well as msmtp configuration name. userName = "preston"; -- cgit