Add more packages to quickstart configuration
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Quick configuration for setting up basic things on a standalone home-manager device
|
# 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
|
# If you want to adapt it to a specific device, copy this file with the correct hostname
|
||||||
{
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
../global
|
../global
|
||||||
|
|
||||||
@@ -10,9 +10,23 @@
|
|||||||
../features/yazi
|
../features/yazi
|
||||||
../features/emacs
|
../features/emacs
|
||||||
../features/nix-helper
|
../features/nix-helper
|
||||||
|
../features/tmux
|
||||||
];
|
];
|
||||||
|
|
||||||
is-nixos = false;
|
is-nixos = false;
|
||||||
|
|
||||||
home.sessionPath = ["/snap/bin"];
|
home.sessionPath = ["/snap/bin"];
|
||||||
|
|
||||||
|
# Essential packages
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
bat
|
||||||
|
dust
|
||||||
|
fd
|
||||||
|
ripgrep
|
||||||
|
fzf
|
||||||
|
lazygit
|
||||||
|
mc
|
||||||
|
tree
|
||||||
|
wget
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user