From 3f062b7a581bd3d64d748e4943f930900202c53c Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sun, 27 Nov 2022 12:01:39 +0100 Subject: [PATCH] Add lsd support --- hm_modules/bash.nix | 2 -- hm_modules/lsd.nix | 6 ++++++ odin/hm.nix | 1 + thor/hm.nix | 1 + 4 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 hm_modules/lsd.nix diff --git a/hm_modules/bash.nix b/hm_modules/bash.nix index 29e99d0..8a83e81 100644 --- a/hm_modules/bash.nix +++ b/hm_modules/bash.nix @@ -3,8 +3,6 @@ enable = true; enableVteIntegration = true; shellAliases = { - "ll" = "ls -l"; - "la" = "ls -la"; ".." = "cd .."; }; diff --git a/hm_modules/lsd.nix b/hm_modules/lsd.nix new file mode 100644 index 0000000..7cdc84b --- /dev/null +++ b/hm_modules/lsd.nix @@ -0,0 +1,6 @@ +{ + programs.lsd = { + enable = true; + enableAliases = true; + }; +} diff --git a/odin/hm.nix b/odin/hm.nix index ed2bec8..26c37ad 100644 --- a/odin/hm.nix +++ b/odin/hm.nix @@ -130,6 +130,7 @@ ../hm_modules/kitty.nix ../hm_modules/kubernetes-admin.nix ../hm_modules/libinput-gestures.nix + ../hm_modules/lsd.nix ../hm_modules/mangohud.nix ../hm_modules/megasync.nix ../hm_modules/mpv.nix diff --git a/thor/hm.nix b/thor/hm.nix index 05176be..ea3b062 100644 --- a/thor/hm.nix +++ b/thor/hm.nix @@ -111,6 +111,7 @@ # ../hm_modules/keepassxc.nix ../hm_modules/kitty.nix ../hm_modules/kubernetes-admin.nix + ../hm_modules/lsd.nix ../hm_modules/mangohud.nix ../hm_modules/megasync.nix ../hm_modules/mpv.nix