From 4c648a0c189c83ceab6421a0d3f5dfcadea4d8a7 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 4 Jan 2025 09:31:36 +0000 Subject: [PATCH] Add some (fun) extra terminal programs --- system/home/shell/default.nix | 1 + system/home/shell/extras.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 system/home/shell/extras.nix diff --git a/system/home/shell/default.nix b/system/home/shell/default.nix index 9043dac3..923b81f5 100644 --- a/system/home/shell/default.nix +++ b/system/home/shell/default.nix @@ -9,6 +9,7 @@ ./git.nix ./ssh.nix ./starship.nix + ./extras.nix ]; home.shellAliases = { sync-all = "sync-git; vdirsyncer sync; mbsync -a"; diff --git a/system/home/shell/extras.nix b/system/home/shell/extras.nix new file mode 100644 index 00000000..5837b3d0 --- /dev/null +++ b/system/home/shell/extras.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + asciiquarium-transparent + pipes + cbonsai + ]; +}