From 499755444a6a5c7f0883355430461c45d34cdee2 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Fri, 11 Jul 2025 17:21:58 +1000 Subject: [PATCH] add some ls aliases based on eza --- modules/nixos/features/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixos/features/shell.nix b/modules/nixos/features/shell.nix index 60a0932..2d3d4a7 100644 --- a/modules/nixos/features/shell.nix +++ b/modules/nixos/features/shell.nix @@ -5,6 +5,8 @@ in { config = lib.mkIf config.${feature}.enable { environment.shellAliases = { + l = "eza --long --header --group-directories-first --icons always"; + la = "l -a"; g = "lazygit"; ns = "nh os switch"; rf = "nix flake init --template 'https://flakehub.com/f/the-nix-way/dev-templates/*#rust' && direnv allow";