forked from jan-leila/nix-config
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			432 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			432 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   config,
 | |
|   osConfig,
 | |
|   ...
 | |
| }: {
 | |
|   config = lib.mkIf osConfig.host.impermanence.enable {
 | |
|     home.persistence."/persist/home/leyla" = {
 | |
|       directories = [
 | |
|         "desktop"
 | |
|         "downloads"
 | |
|         "documents"
 | |
|       ];
 | |
|       files = [
 | |
|         ".bash_history" # keep shell history around
 | |
|         "${config.xdg.dataHome}/recently-used.xbel" # gnome recently viewed files
 | |
|       ];
 | |
|       allowOther = true;
 | |
|     };
 | |
|   };
 | |
| }
 |