60 lines
810 B
Nix
60 lines
810 B
Nix
{ _config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "dennis";
|
|
home.homeDirectory = "/home/dennis";
|
|
home.stateVersion = "24.11";
|
|
|
|
home.packages = with pkgs; [
|
|
neofetch
|
|
zip
|
|
unzip
|
|
ripgrep
|
|
fzf
|
|
fd
|
|
sd
|
|
bat
|
|
tldr
|
|
fortune
|
|
iotop
|
|
iftop
|
|
btop
|
|
just
|
|
mmv-go
|
|
zoxide
|
|
tmux
|
|
];
|
|
|
|
imports = [
|
|
../modules/ssh
|
|
../modules/tmux/server.nix
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
|
|
core = {
|
|
ignorecase = "false";
|
|
};
|
|
|
|
pull = {
|
|
rebase = false;
|
|
};
|
|
|
|
push = {
|
|
autoSetupRemote = true;
|
|
};
|
|
|
|
user = {
|
|
name = "Dennis Schoepf";
|
|
email = "me@dnsc.io";
|
|
};
|
|
};
|
|
};
|
|
}
|