20 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  config,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  config = lib.mkIf (config.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;
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |