diff --git a/homes/julian/quickstart.nix b/homes/julian/quickstart.nix index 70a6e36..f77e8b0 100644 --- a/homes/julian/quickstart.nix +++ b/homes/julian/quickstart.nix @@ -1,6 +1,6 @@ # Quick configuration for setting up basic things on a standalone home-manager device # If you want to adapt it to a specific device, copy this file with the correct hostname -{ +{pkgs, ...}: { imports = [ ../global @@ -10,9 +10,23 @@ ../features/yazi ../features/emacs ../features/nix-helper + ../features/tmux ]; is-nixos = false; home.sessionPath = ["/snap/bin"]; + + # Essential packages + home.packages = with pkgs; [ + bat + dust + fd + ripgrep + fzf + lazygit + mc + tree + wget + ]; }