2022-04-27 01:36:16 +00:00
|
|
|
|
# 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, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2023-02-05 22:16:20 +00:00
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2022-04-27 01:36:16 +00:00
|
|
|
|
|
2023-02-05 22:16:20 +00:00
|
|
|
|
boot.initrd.availableKernelModules =
|
|
|
|
|
[ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
|
|
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
2023-01-31 14:07:47 +00:00
|
|
|
|
boot.kernelModules = [ "kvm-amd" ];
|
2022-04-27 01:36:16 +00:00
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2023-02-05 22:16:20 +00:00
|
|
|
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
2022-04-27 01:36:16 +00:00
|
|
|
|
|
2023-02-05 22:16:20 +00:00
|
|
|
|
fileSystems."/" = {
|
2023-02-21 01:30:45 +00:00
|
|
|
|
device = "/dev/disk/by-label/nixos";
|
2023-02-05 22:16:20 +00:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
2023-02-21 01:30:45 +00:00
|
|
|
|
device = "/dev/disk/by-label/boot";
|
2023-02-05 22:16:20 +00:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2022-04-27 01:36:16 +00:00
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
2023-01-31 14:07:47 +00:00
|
|
|
|
# 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.<interface>.useDHCP`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
2023-02-21 01:30:45 +00:00
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
2023-02-05 22:16:20 +00:00
|
|
|
|
hardware.cpu.amd.updateMicrocode =
|
|
|
|
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
2022-04-27 01:36:16 +00:00
|
|
|
|
}
|