Add more packages to quickstart configuration

This commit is contained in:
2026-01-20 20:39:03 +01:00
parent 3b4c0e4a63
commit 3a994a3b8d

View File

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