mirror of
				https://github.com/nmasur/dotfiles
				synced 2025-11-04 11:43:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			294 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			294 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  options.nmasur.settings = {
 | 
						|
    username = lib.mkOption {
 | 
						|
      type = lib.types.str;
 | 
						|
      description = "Primary username for the system";
 | 
						|
    };
 | 
						|
    fullName = lib.mkOption {
 | 
						|
      type = lib.types.str;
 | 
						|
      description = "Human readable name of the user";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |