From f13a0fe59718b6cf9ee3418a7cf4ddf288cf8da4 Mon Sep 17 00:00:00 2001 From: deva Date: Sat, 29 Jun 2024 15:10:24 -0400 Subject: [PATCH] add 'fhs' alias for when i need to run a dynamically linked executable --- user/shell/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/user/shell/zsh.nix b/user/shell/zsh.nix index 23c57df..15c90f6 100644 --- a/user/shell/zsh.nix +++ b/user/shell/zsh.nix @@ -6,6 +6,9 @@ programs.bat.enable = true; programs.eza.enable = true; programs.man.enable = true; + home.packages = [ + pkgs.unstable.steam-run + ]; programs.wezterm.enableZshIntegration = true; programs.fzf = { @@ -148,6 +151,7 @@ }; shellAliases = { run = "nix-shell --command 'zsh' -p"; + fhs = "steam-run"; nsh = "nix-shell --command 'zsh'"; nd = "nix develop"; g = "git";