update config, use NetworkManager

This commit is contained in:
Christoph Cullmann 2023-09-17 15:57:39 +02:00
parent b0c5f1e67e
commit 5515e4f5a5
5 changed files with 6 additions and 31 deletions

View file

@ -4,14 +4,11 @@
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" ];
boot.initrd.kernelModules = [ "i915" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "none";
@ -85,8 +82,6 @@
options = [ "noatime" "nodiratime" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}