|
|
@@ -8,7 +8,7 @@
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ];
|
|
|
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" "usb_storage" "sd_mod" ];
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
@@ -24,6 +24,11 @@
|
|
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fileSystems."/var/lib/docker/overlay2/539923c18432611fc07642163d0fefe19c5de9d2767fa4778645a8d65f99f85a/merged" =
|
|
|
|
|
|
|
|
{ device = "overlay";
|
|
|
|
|
|
|
|
fsType = "overlay";
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
@@ -31,7 +36,11 @@
|
|
|
|
# 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;
|
|
|
|
# networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true;
|
|
|
|
# networking.interfaces.br-1dc84fe6529c.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
# networking.interfaces.docker0.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
# networking.interfaces.veth9b2658e.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|