mirror of
				https://github.com/ItsDrike/nixdots
				synced 2025-11-04 05:16:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			392 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			392 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }: with lib; let
 | 
						|
  inherit (lib) mkEnableOption mkOption;
 | 
						|
in
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ./programs
 | 
						|
    ./git.nix
 | 
						|
    ./wms.nix
 | 
						|
    ./theme.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  options.myOptions.home-manager = {
 | 
						|
    enable = mkEnableOption "home-manager";
 | 
						|
 | 
						|
    stateVersion = mkOption {
 | 
						|
      type = types.str;
 | 
						|
      default = config.system.nixos;
 | 
						|
      description = "HomeManager's state version";
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 | 
						|
 |