Add some (fun) extra terminal programs

This commit is contained in:
Evie Litherland-Smith 2025-01-04 09:31:36 +00:00
parent 6b15453306
commit 4c648a0c18
2 changed files with 9 additions and 0 deletions

View file

@ -9,6 +9,7 @@
./git.nix ./git.nix
./ssh.nix ./ssh.nix
./starship.nix ./starship.nix
./extras.nix
]; ];
home.shellAliases = { home.shellAliases = {
sync-all = "sync-git; vdirsyncer sync; mbsync -a"; sync-all = "sync-git; vdirsyncer sync; mbsync -a";

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
asciiquarium-transparent
pipes
cbonsai
];
}