19 lines
		
	
	
	
		
			350 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			350 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  withSystem,
 | 
						|
  ook,
 | 
						|
  ...
 | 
						|
}: let
 | 
						|
  inherit (ook.lib.builders) mkServer;
 | 
						|
in {
 | 
						|
  flake.nixosConfigurations = {
 | 
						|
    ooknode = mkServer {
 | 
						|
      inherit withSystem;
 | 
						|
      system = "x86_64-linux";
 | 
						|
      hostname = "ooknode";
 | 
						|
      domain = "ooknet.org";
 | 
						|
      type = "vm";
 | 
						|
      profile = "linode";
 | 
						|
      services = ["website" "forgejo"];
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |