17 lines
		
	
	
	
		
			369 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			369 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| with lib;
 | |
| let
 | |
|   cfg = config.qenya.base-server;
 | |
| in
 | |
| {
 | |
|   options.qenya.base-server.enable = mkEnableOption "Base configuration for headless servers";
 | |
| 
 | |
|   config = mkIf cfg.enable {
 | |
|     time.timeZone = "Etc/UTC";
 | |
| 
 | |
|     # Allow remote deployment with colmena
 | |
|     deployment.targetUser = null;
 | |
|     security.sudo.wheelNeedsPassword = false;
 | |
|   };
 | |
| }
 |