10 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {self, ...}: let
 | |
|   inherit (self.lib) mkWorkstation;
 | |
| in {
 | |
|   flake.nixosConfigurations = {
 | |
|     grookin = mkWorkstation {
 | |
|       hostname = "grookin";
 | |
|       system = "x86-64-linux";
 | |
|     };
 | |
|   };
 | |
| }
 |