30 lines
		
	
	
	
		
			525 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			525 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   pkgs,
 | |
|   lib,
 | |
|   ...
 | |
| }: {
 | |
|   imports = [
 | |
|     ./file-system.nix
 | |
|     ./hardware.nix
 | |
|   ];
 | |
| 
 | |
|   ooknet = {
 | |
|     host = {
 | |
|       admin = {
 | |
|         name = "ooks";
 | |
|         shell = "fish";
 | |
|         homeManager = true;
 | |
|       };
 | |
|     };
 | |
|     workstation = {
 | |
|       profiles = ["media" "gaming" "communication"];
 | |
|       environment = "hyprland";
 | |
|       theme = "minimal";
 | |
|     };
 | |
|     console = {
 | |
|       profile = "standard";
 | |
|     };
 | |
|   };
 | |
|   boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
 | |
|   system.stateVersion = lib.mkDefault "23.11";
 | |
| }
 |