From c295d3e90624e73ac36ce836990603202afe925c Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Tue, 27 Aug 2024 01:02:54 -0700 Subject: [PATCH] fix(nix): add eza and configure fish aliases Signed-off-by: Lucas Sta Maria --- nix/hosts/framework/home.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/nix/hosts/framework/home.nix b/nix/hosts/framework/home.nix index 79e31cb..0606455 100644 --- a/nix/hosts/framework/home.nix +++ b/nix/hosts/framework/home.nix @@ -45,6 +45,7 @@ gh libnotify tokei + eza discord steam @@ -120,7 +121,6 @@ ### Programs programs.home-manager.enable = true; - programs.fish.enable = true; programs.mu.enable = true; programs.alacritty = { @@ -147,6 +147,15 @@ }; }; + programs.fish = { + enable = true; + shellAliases = { + psax = "ps -ax | grep -i"; + ls = "eza"; + ll = "eza --all --long"; + }; + }; + programs.gh = { enable = true; settings.editor = "emacsclient";