mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
8b82f52e75
According to https://fishshell.com/docs/current/cmds/source.html, only one file can be sourced at a time: "If additional arguments are specified after the file name, they will be inserted into the $argv variable." PR #1204
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
fooPluginSrc = pkgs.writeText "fooPluginSrc" "";
|
|
|
|
generatedConfdFile = pkgs.writeText "plugin-foo.fish" ''
|
|
# Plugin foo
|
|
set -l plugin_dir ${fooPluginSrc}
|
|
|
|
# Set paths to import plugin components
|
|
if test -d $plugin_dir/functions
|
|
set fish_function_path $fish_function_path[1] $plugin_dir/functions $fish_function_path[2..-1]
|
|
end
|
|
|
|
if test -d $plugin_dir/completions
|
|
set fish_complete_path $fish_complete_path[1] $plugin_dir/completions $fish_complete_path[2..-1]
|
|
end
|
|
|
|
# Source initialization code if it exists.
|
|
if test -d $plugin_dir/conf.d
|
|
for f in $plugin_dir/conf.d/*.fish
|
|
source $f
|
|
end
|
|
end
|
|
|
|
if test -f $plugin_dir/key_bindings.fish
|
|
source $plugin_dir/key_bindings.fish
|
|
end
|
|
|
|
if test -f $plugin_dir/init.fish
|
|
source $plugin_dir/init.fish
|
|
end
|
|
'';
|
|
|
|
in {
|
|
config = {
|
|
programs.fish = {
|
|
enable = true;
|
|
|
|
plugins = [{
|
|
name = "foo";
|
|
src = fooPluginSrc;
|
|
}];
|
|
};
|
|
|
|
nmt = {
|
|
description =
|
|
"if fish.plugins set, check conf.d file exists and contents match";
|
|
script = ''
|
|
assertDirectoryExists home-files/.config/fish/conf.d
|
|
assertFileExists home-files/.config/fish/conf.d/plugin-foo.fish
|
|
assertFileContent home-files/.config/fish/conf.d/plugin-foo.fish ${generatedConfdFile}
|
|
'';
|
|
|
|
};
|
|
};
|
|
}
|