mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-20 07:12:36 +00:00
Due to fish being a non-POSIX shell, granted provides a separate wrapper to be used by fish.
11 lines
213 B
Nix
11 lines
213 B
Nix
{
|
|
programs = {
|
|
granted.enable = true;
|
|
granted.enableFishIntegration = false;
|
|
fish.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/fish/functions/assume.fish
|
|
'';
|
|
}
|