ma x13: move out amdgpu
This commit is contained in:
parent
53477675c8
commit
616de8e609
|
@ -3,43 +3,22 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./input.nix
|
./input.nix
|
||||||
./disk.nix
|
|
||||||
|
((import ../../../2configs/fs/disko/single-disk-encrypted-zfs.nix ) { disks = ["/dev/nvme0n1" ]; hostId = "f8b8e0a3"; })
|
||||||
./battery.nix
|
./battery.nix
|
||||||
|
./amdgpu.nix
|
||||||
(self + "/2configs/hw/bluetooth.nix")
|
../../../2configs/hw/bluetooth.nix
|
||||||
(self + "/2configs/hw/tpm.nix")
|
../../../2configs/hw/tpm.nix
|
||||||
(self + "/2configs/hw/ssd.nix")
|
../../../2configs/hw/ssd.nix
|
||||||
# (self + "/2configs/hw/xmm7360.nix")
|
# ../../../2configs/hw/xmm7360.nix
|
||||||
|
|
||||||
nixos-hardware.nixosModules.lenovo-thinkpad-l14-amd
|
nixos-hardware.nixosModules.lenovo-thinkpad-l14-amd
|
||||||
|
|
||||||
];
|
];
|
||||||
boot.zfs.requestEncryptionCredentials = true;
|
|
||||||
networking.hostId = "f8b8e0a2";
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
# services.xserver.enable = lib.mkForce false;
|
|
||||||
|
|
||||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
|
||||||
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
||||||
hardware.opengl.driSupport = true;
|
|
||||||
hardware.opengl.extraPackages = [ pkgs.amdvlk pkgs.rocm-opencl-icd pkgs.rocm-opencl-runtime ];
|
|
||||||
# For 32 bit applications
|
|
||||||
hardware.opengl.driSupport32Bit = true;
|
|
||||||
hardware.opengl.extraPackages32 = with pkgs; [ driversi686Linux.amdvlk ];
|
|
||||||
# is required for amd graphics support ( xorg wont boot otherwise )
|
|
||||||
#boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
||||||
boot.kernelPackages = lib.mkForce pkgs.linuxPackages;
|
boot.kernelPackages = lib.mkForce pkgs.linuxPackages;
|
||||||
|
|
||||||
services.fwupd.enable = true;
|
services.fwupd.enable = true;
|
||||||
|
|
||||||
programs.light.enable = true;
|
programs.light.enable = true;
|
||||||
|
|
||||||
users.groups.video = {};
|
|
||||||
users.groups.render = {};
|
|
||||||
users.users.makefu.extraGroups = [ "video" "render" ];
|
|
||||||
|
|
||||||
boot.extraModprobeConfig = ''
|
boot.extraModprobeConfig = ''
|
||||||
options thinkpad_acpi fan_control=1
|
options thinkpad_acpi fan_control=1
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue