programs.thefuck: support shells that don't use /etc/profile
This commit is contained in:
parent
8977bee504
commit
26655f505f
@ -3,7 +3,12 @@
|
|||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.programs.thefuck;
|
prg = config.programs;
|
||||||
|
cfg = prg.thefuck;
|
||||||
|
|
||||||
|
initScript = ''
|
||||||
|
eval $(${pkgs.thefuck}/bin/thefuck --alias ${cfg.alias})
|
||||||
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
@ -24,8 +29,11 @@ in
|
|||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.systemPackages = with pkgs; [ thefuck ];
|
environment.systemPackages = with pkgs; [ thefuck ];
|
||||||
environment.shellInit = ''
|
environment.shellInit = initScript;
|
||||||
eval $(${pkgs.thefuck}/bin/thefuck --alias ${cfg.alias})
|
|
||||||
|
programs.zsh.shellInit = mkIf prg.zsh.enable initScript;
|
||||||
|
programs.fish.shellInit = mkIf prg.fish.enable ''
|
||||||
|
${pkgs.thefuck}/bin/thefuck --alias | source
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user