forked from fabian/nix
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			452 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			452 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  lib,
 | 
						|
  pkgs,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  imports = [
 | 
						|
    ./baseline.nix
 | 
						|
    ./yubikey.nix
 | 
						|
    ./audio.nix
 | 
						|
    ./graphics.nix
 | 
						|
    ./virtualisation.nix
 | 
						|
    ./android.nix
 | 
						|
    ./users.nix
 | 
						|
    ./bluetooth.nix
 | 
						|
    ./net.nix
 | 
						|
    ./steam.nix
 | 
						|
    ./gtklock.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  fonts.packages = with pkgs; [
 | 
						|
    jetbrains-mono
 | 
						|
    noto-fonts
 | 
						|
    noto-fonts-cjk-sans
 | 
						|
    noto-fonts-emoji
 | 
						|
    noto-fonts-extra
 | 
						|
    nerd-fonts.fira-code
 | 
						|
    nerd-fonts.droid-sans-mono
 | 
						|
  ];
 | 
						|
}
 |