From 9167e2b435098ec9ab0c482b171580edd9c7b911 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 20 Aug 2022 21:10:55 +0200 Subject: [PATCH] fish: Add base64 --decode wrapper --- home/programs/fish.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/programs/fish.nix b/home/programs/fish.nix index 00758b0..7baa471 100644 --- a/home/programs/fish.nix +++ b/home/programs/fish.nix @@ -118,6 +118,10 @@ }; functions = { + base64decode = '' + echo "$argv" | base64 --decode + ''; + podman = '' fish -c "set -e SSH_AUTH_SOCK; ${config.home.profileDirectory}/bin/podman $argv" '';