To accomodate the raccoon knights workstation, some of the configuration pulled by m/common/main.nix has to be removed. To solve it, the xeon specific parts are placed into m/common/xeon.nix and only the common configuration is at m/common/base.nix. Reviewed-by: Aleix Roca Nonell <aleix.rocanonell@bsc.es>
		
			
				
	
	
		
			15 lines
		
	
	
		
			529 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			529 B
		
	
	
	
		
			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, lib, pkgs, modulesPath, ... }:
 | ||
| 
 | ||
| {
 | ||
|   imports =
 | ||
|     [ (modulesPath + "/installer/scan/not-detected.nix")
 | ||
|     ];
 | ||
| 
 | ||
|   nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | ||
|   powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
 | ||
|   hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
 | ||
| }
 |