2eafb8192e
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
50 lines
1,012 B
Nix
50 lines
1,012 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
|
|
expectedFunc = pkgs.writeText "func.fish" ''
|
|
function func
|
|
echo foo
|
|
end
|
|
'';
|
|
|
|
expectedFuncMulti = pkgs.writeText "func-multi.fish" ''
|
|
function func-multi
|
|
echo bar
|
|
if foo
|
|
bar
|
|
baz
|
|
end
|
|
end
|
|
'';
|
|
|
|
in {
|
|
config = {
|
|
programs.fish = {
|
|
enable = true;
|
|
|
|
formatFishScripts = true;
|
|
|
|
functions = {
|
|
func = ''echo "foo"'';
|
|
func-multi = ''
|
|
echo bar
|
|
if foo
|
|
bar
|
|
baz
|
|
end
|
|
'';
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/fish/functions/func.fish
|
|
echo ${expectedFunc}
|
|
assertFileContent home-files/.config/fish/functions/func.fish ${expectedFunc}
|
|
|
|
assertFileExists home-files/.config/fish/functions/func-multi.fish
|
|
echo ${expectedFuncMulti}
|
|
assertFileContent home-files/.config/fish/functions/func-multi.fish ${expectedFuncMulti}
|
|
'';
|
|
};
|
|
}
|