fish: disable async prompt in gnome

This commit is contained in:
Leonardo Eugênio 2023-10-28 08:51:08 -03:00
parent 43c769617b
commit 0aad44af19
1 changed files with 4 additions and 2 deletions

View File

@ -88,8 +88,10 @@ in {
home.packages = (with pkgs; with fishPlugins;[
trash-cli
wl-copy-file
async-prompt
foreign-env
] ++ (lib.optional (desktop == "sway") done));
] ++ (lib.optionals (desktop == "sway") [
async-prompt
done
]));
};
}