feat: set up fish-foreign-env on home declaration
parent
077b73f99c
commit
96d7183112
|
@ -1,6 +1,8 @@
|
||||||
(define-module (radix files fish)
|
(define-module (radix files fish)
|
||||||
#:use-module (gnu)
|
#:use-module (gnu)
|
||||||
|
#:use-module (gnu packages shells)
|
||||||
#:export (abbreviations
|
#:export (abbreviations
|
||||||
|
fenv
|
||||||
greeting
|
greeting
|
||||||
prompt
|
prompt
|
||||||
variables))
|
variables))
|
||||||
|
@ -16,3 +18,7 @@
|
||||||
|
|
||||||
(define variables
|
(define variables
|
||||||
(local-file "../../../files/fish/variables.fish"))
|
(local-file "../../../files/fish/variables.fish"))
|
||||||
|
|
||||||
|
(define fenv
|
||||||
|
(file-append fish-foreign-env
|
||||||
|
"/share/fish/functions/fenv.fish"))
|
||||||
|
|
|
@ -219,7 +219,8 @@
|
||||||
#|Shell services|#
|
#|Shell services|#
|
||||||
(service home-fish-service-type
|
(service home-fish-service-type
|
||||||
(home-fish-configuration
|
(home-fish-configuration
|
||||||
(config (list file:fish-abbreviations))
|
(config (list file:fish-fenv
|
||||||
|
file:fish-abbreviations))
|
||||||
(aliases
|
(aliases
|
||||||
`(#|Common aliases|#
|
`(#|Common aliases|#
|
||||||
("df" . "df -h")
|
("df" . "df -h")
|
||||||
|
|
Loading…
Reference in New Issue