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 + ]; +}