From b606d2a33d755dad2b295f359980cbe532518ee9 Mon Sep 17 00:00:00 2001 From: Martin Pander Date: Thu, 27 Feb 2025 09:03:02 +0100 Subject: [PATCH] Add open command --- nix/user/sh.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/user/sh.nix b/nix/user/sh.nix index 116d7b4..9979284 100644 --- a/nix/user/sh.nix +++ b/nix/user/sh.nix @@ -86,4 +86,9 @@ BAT_THEME = "Coldark-Cold"; } ]; + + home.shellAliases = lib.mkMerge [ { + open = "explorer.exe ."; + } + ]; }