1 # Do not modify this file! It was generated by ‘nixos-generate-config’
2 # and may be overwritten by future invocations. Please make changes
3 # to /etc/nixos/configuration.nix instead.
4 { config, lib, pkgs, modulesPath, ... }:
8 [ (modulesPath + "/installer/scan/not-detected.nix")
11 boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod" ];
12 boot.initrd.kernelModules = [ ];
13 boot.kernelModules = [ "kvm-amd" ];
14 boot.extraModulePackages = [ ];
17 { device = "/dev/disk/by-uuid/b0ded9bb-fe30-49ed-9f03-58298c4df036";
22 { device = "/dev/disk/by-uuid/3E33-0C6B";
24 options = [ "fmask=0022" "dmask=0022" ];
29 # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
30 # (the default) this is the recommended approach. When using systemd-networkd it's
31 # still possible to use this option, but it's recommended to use it in conjunction
32 # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
33 networking.useDHCP = lib.mkDefault true;
34 # networking.interfaces.enp1s0f0.useDHCP = lib.mkDefault true;
35 # networking.interfaces.enp5s0f4u1u1.useDHCP = lib.mkDefault true;
36 # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
38 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
39 hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;