You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
463 B
24 lines
463 B
{ config, inputs, lib, pkgs, system, ... }:
|
|
|
|
/*
|
|
home-manager configuration
|
|
Useful links:
|
|
- Home Manager Manual: https://rycee.gitlab.io/home-manager/
|
|
- Appendix A. Configuration Options: https://rycee.gitlab.io/home-manager/options.html
|
|
*/
|
|
{
|
|
home = {
|
|
packages =
|
|
in
|
|
lib.attrValues {
|
|
inherit (pkgs)
|
|
fd
|
|
neovim
|
|
ripgrep
|
|
tmux
|
|
zsh
|
|
};
|
|
|
|
sessionVariables.EDITOR = "nvim";
|
|
};
|
|
}
|
|
|