34 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, inputs, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
	imports = [
 | 
						|
		./hardware-configuration.nix
 | 
						|
    ../../profiles
 | 
						|
		./nixarr.nix
 | 
						|
		];
 | 
						|
 | 
						|
    activeProfiles = ["base" "gaming"];
 | 
						|
 | 
						|
		systemModules.user = {
 | 
						|
			ooks.enable = true;
 | 
						|
			shell = "fish";
 | 
						|
		};
 | 
						|
 | 
						|
		systemModules.hardware = {
 | 
						|
			cpu.type = "intel";
 | 
						|
			gpu.type = "nvidia";
 | 
						|
		};
 | 
						|
 | 
						|
		systemModules.networking.tailscale = {
 | 
						|
			enable = true;
 | 
						|
			server = true;
 | 
						|
		};
 | 
						|
  	
 | 
						|
		networking = {
 | 
						|
  		hostName = "ooksmedia"; 		
 | 
						|
			# useDHCP = true;
 | 
						|
		};
 | 
						|
    boot = {
 | 
						|
      kernelPackages = pkgs.linuxPackages_xanmod_latest;
 | 
						|
		};
 | 
						|
}
 |