nix-infra/modules/home/default.nix

28 lines
383 B
Nix
Raw Normal View History

2024-03-24 18:02:29 +00:00
{ pkgs
, config
, lib
, ...
2024-03-24 18:02:28 +00:00
}: {
2024-03-24 18:02:29 +00:00
imports = [ ./fish ./nvim ];
2024-03-24 18:02:28 +00:00
home.packages = with pkgs; [
bat
lsd
gnupg
tmux
colmena
];
programs = {
home-manager.enable = true;
git = {
enable = true;
extraConfig = {
2024-03-24 18:02:29 +00:00
init = { defaultBranch = "main"; };
core = { editor = "nvim"; };
2024-03-24 18:02:28 +00:00
pull.rebase = true;
};
};
};
}