mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
18 lines
376 B
Nix
18 lines
376 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
programs.fish.enable = true;
|
|
|
|
home.preferXdgDirectories = false;
|
|
|
|
programs.lazygit = {
|
|
enable = true;
|
|
shellWrapperName = "lg";
|
|
enableFishIntegration = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileContent home-files/.config/fish/functions/${config.programs.lazygit.shellWrapperName}.fish \
|
|
${./fish-integration-expected.fish}
|
|
'';
|
|
}
|