sheldon: fix missing prefix

This commit is contained in:
Kyure_A 2024-07-30 21:50:14 +09:00
parent 3aba34f8cb
commit cdb8ea396e

View file

@ -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 != { })
'' ''