29 lines
517 B
Nix
29 lines
517 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home = {
|
|
username = "k";
|
|
homeDirectory = "/home/k";
|
|
stateVersion = "23.11";
|
|
};
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
userName = "k";
|
|
userEmail = "markers711@gmail.com";
|
|
};
|
|
tmux.enable = true;
|
|
nix-your-shell.enable = true;
|
|
starship.enable = false;
|
|
zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
autocd = true;
|
|
};
|
|
};
|
|
}
|