14 lines
		
	
	
		
			192 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			192 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
{
 | 
						|
  programs = {
 | 
						|
    mpv = {
 | 
						|
      enable = true;
 | 
						|
      config = {
 | 
						|
        force-window = true;
 | 
						|
        keep-open = true;
 | 
						|
        save-position-on-quit = true;
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |