From 5b344eacc5b879b6ae8f0cec636f6466a1414f02 Mon Sep 17 00:00:00 2001 From: Till Date: Sat, 7 Mar 2026 10:54:40 +0100 Subject: [PATCH] aliases, eza --- home/fish.nix | 10 ---------- home/profiles/minimal.nix | 11 +++++++++++ home/r.nix | 5 +++++ 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/home/fish.nix b/home/fish.nix index 16997a5..ac50aeb 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -1,16 +1,6 @@ { config, ... }: { - home.shellAliases = { - top = "btm --battery"; - du = "dust"; - ymd = "date +'%Y-%m-%d'"; - dmy = "date +'%-d.-%-m.%Y'"; - r = "R --no-save --no-restore"; - R = "R --no-save --no-restore"; - cdg = "cd \$(git rev-parse --show-toplevel)"; - }; - programs.fish = { enable = true; diff --git a/home/profiles/minimal.nix b/home/profiles/minimal.nix index e4e5828..e3963f5 100644 --- a/home/profiles/minimal.nix +++ b/home/profiles/minimal.nix @@ -6,7 +6,9 @@ home.homeDirectory = "/home/${config.home.username}"; home.packages = with pkgs; [ + btm dust + eza fastfetch fzf jq @@ -20,6 +22,15 @@ yq ]; + home.shellAliases = { + cdg = "cd \$(git rev-parse --show-toplevel)"; + dmy = "date +'%-d.-%-m.%Y'"; + du = "dust"; + ls = "eza"; + top = "btm --battery"; + ymd = "date +'%Y-%m-%d'"; + }; + imports = [ ../fish.nix ../vifm.nix diff --git a/home/r.nix b/home/r.nix index 7eb64f1..ea23218 100644 --- a/home/r.nix +++ b/home/r.nix @@ -52,4 +52,9 @@ in R-packed RStudio-packed ]; + + home.shellAliases = { + r = "R --no-save --no-restore"; + R = "R --no-save --no-restore"; + }; }