23 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   self,
 | |
|   lib,
 | |
|   ...
 | |
| }: let
 | |
|   inherit (lib) mkIf;
 | |
|   inherit (config.ooknet.host) admin;
 | |
| in {
 | |
|   imports = [
 | |
|     ./options.nix
 | |
|     ./themes
 | |
|     ./services
 | |
|     ./programs
 | |
|     ./gaming
 | |
|     ./environment
 | |
|     ./virtualization
 | |
|   ];
 | |
| 
 | |
|   home-manager.users.${admin.name} = mkIf admin.homeManager {
 | |
|     imports = ["${self}/modules/home/workstation"];
 | |
|   };
 | |
| }
 |