mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:53:55 -05:00
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
# 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,
|
||
inputs,
|
||
lib,
|
||
modulesPath,
|
||
pkgs,
|
||
...
|
||
}: {
|
||
imports = [
|
||
(modulesPath + "/installer/scan/not-detected.nix")
|
||
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
|
||
];
|
||
|
||
boot = {
|
||
initrd = {
|
||
availableKernelModules = ["nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod"];
|
||
kernelModules = ["amdgpu"];
|
||
};
|
||
|
||
extraModulePackages = [];
|
||
kernelModules = ["kvm-amd" "amdgpu"];
|
||
kernelParams = ["amdgpu.abmlevel=0"];
|
||
};
|
||
|
||
hardware = {
|
||
cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
||
enableAllFirmware = true;
|
||
|
||
opengl = {
|
||
## radv: an open-source Vulkan driver from freedesktop
|
||
driSupport = true;
|
||
driSupport32Bit = true;
|
||
|
||
## amdvlk: an open-source Vulkan driver from AMD
|
||
extraPackages = [pkgs.rocmPackages.clr.icd pkgs.amdvlk];
|
||
extraPackages32 = [pkgs.driversi686Linux.amdvlk];
|
||
};
|
||
};
|
||
|
||
services.xserver.videoDrivers = ["amdgpu"];
|
||
|
||
networking.useDHCP = lib.mkDefault true;
|
||
|
||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
}
|