sheldon: fix missing prefix
This commit is contained in:
parent
3aba34f8cb
commit
cdb8ea396e
|
@ -46,7 +46,7 @@ in {
|
||||||
source = tomlFormat.generate "sheldon-config" cfg.settings;
|
source = tomlFormat.generate "sheldon-config" cfg.settings;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.bash.initExtra = concatStringsSep "\n" [
|
programs.bash.initExtra = builtins.concatStringsSep "\n" [
|
||||||
mkIf
|
mkIf
|
||||||
(cfg.settings != { })
|
(cfg.settings != { })
|
||||||
''
|
''
|
||||||
|
@ -61,7 +61,7 @@ in {
|
||||||
''
|
''
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.zsh.initExtra = concatStringsSep "\n" [
|
programs.zsh.initExtra = builtins.concatStringsSep "\n" [
|
||||||
mkIf
|
mkIf
|
||||||
(cfg.settings != { })
|
(cfg.settings != { })
|
||||||
''
|
''
|
||||||
|
@ -76,7 +76,7 @@ in {
|
||||||
''
|
''
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.fish.interactiveShellInit = concatStringsSep "\n" [
|
programs.fish.interactiveShellInit = builtins.concatStringsSep "\n" [
|
||||||
mkIf
|
mkIf
|
||||||
(cfg.settings != { })
|
(cfg.settings != { })
|
||||||
''
|
''
|
||||||
|
|
Loading…
Reference in a new issue