diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-09-16 14:47:29 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-09-16 14:47:29 +0300 |
commit | 190bf349658ceb6f64c6d69cdccbddfb5491f894 (patch) | |
tree | 33a563624d4725cc042f7dc2f805078e8f34818e /modules/nixos/podman.nix | |
parent | 2023-09-16 (diff) |
2023-09-16
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/podman.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/nixos/podman.nix b/modules/nixos/podman.nix index cda8a4b..ceb748b 100644 --- a/modules/nixos/podman.nix +++ b/modules/nixos/podman.nix @@ -55,7 +55,10 @@ in { }; programs.bash = { - shellAliases.p = "${pkgs.podman}/bin/podman"; + shellAliases = { + podman = "grc -es ${pkgs.podman}/bin/podman"; + p = "podman"; + }; initExtra = mkAfter '' _complete_alias p __start_podman podman ''; |