refactor(flake-parts): initial flake-parts configuration
This commit is contained in:
		
							parent
							
								
									8f67be9e68
								
							
						
					
					
						commit
						5603001d65
					
				
					 230 changed files with 380 additions and 717 deletions
				
			
		
							
								
								
									
										29
									
								
								inputs/system/modules/base/host/hardware/gpu/amd/default.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								inputs/system/modules/base/host/hardware/gpu/amd/default.nix
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,29 @@
 | 
			
		|||
{ config, lib, pkgs, ... }:
 | 
			
		||||
 | 
			
		||||
let
 | 
			
		||||
  gpu = config.systemModules.host.hardware.gpu;
 | 
			
		||||
  inherit (lib) mkIf mkDefault;
 | 
			
		||||
  inherit (builtins) elem;
 | 
			
		||||
in
 | 
			
		||||
 | 
			
		||||
{
 | 
			
		||||
  config = mkIf (elem gpu.type ["amd"]) {
 | 
			
		||||
    hardware.opengl = {
 | 
			
		||||
      extraPackages = with pkgs; [
 | 
			
		||||
        vulkan-tools
 | 
			
		||||
        vulkan-loader
 | 
			
		||||
        vulkan-extension-layer
 | 
			
		||||
        vulkan-validation-layers
 | 
			
		||||
        # amdvlk
 | 
			
		||||
        mesa
 | 
			
		||||
      ];
 | 
			
		||||
      extraPackages32 = [ pkgs.driversi686Linux.amdvlk ];
 | 
			
		||||
    };
 | 
			
		||||
    boot = {
 | 
			
		||||
      initrd.kernelModules = ["amdgpu"];
 | 
			
		||||
      kernelModules = ["amdgpu"];
 | 
			
		||||
    };
 | 
			
		||||
    environment.systemPackages = [ pkgs.nvtopPackages.amd ];
 | 
			
		||||
    services.xserver.videoDrivers = mkDefault ["modesetting" "amdgpu"];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue