home: services: shells: Export Fish environment variables.
Variables set in the Fish configuration weren't previously being exported. * gnu/home/services/shells.scm (serialize-fish-env-vars): Output the `set -x` command instead of `set`. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
		
							parent
							
								
									c92e1b3b31
								
							
						
					
					
						commit
						75a520cca6
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -555,9 +555,9 @@ with text blocks from other extensions and the base service."))
 | 
				
			||||||
               ((key . #f)
 | 
					               ((key . #f)
 | 
				
			||||||
                "")
 | 
					                "")
 | 
				
			||||||
               ((key . #t)
 | 
					               ((key . #t)
 | 
				
			||||||
                #~(string-append "set " #$key "\n"))
 | 
					                #~(string-append "set -x " #$key "\n"))
 | 
				
			||||||
               ((key . value)
 | 
					               ((key . value)
 | 
				
			||||||
                #~(string-append "set " #$key " "  #$value "\n")))
 | 
					                #~(string-append "set -x " #$key " "  #$value "\n")))
 | 
				
			||||||
             val)))
 | 
					             val)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-configuration home-fish-configuration
 | 
					(define-configuration home-fish-configuration
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue