33 lines
575 B
Nix
33 lines
575 B
Nix
# 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
|
|
|
|
./features/fish
|
|
./features/direnv
|
|
./features/neovim
|
|
./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
|
|
];
|
|
}
|