nix-infra/modules/users/sammy.nix

44 lines
766 B
Nix
Raw Normal View History

2024-03-24 18:02:22 +00:00
{
lib,
config,
pkgs,
...
}: {
imports = [../nvim];
home.username = "sammy";
home.homeDirectory = "/home/sammy";
home.stateVersion = "23.11"; # Please read the comment before changing.
home.packages = with pkgs; [
bat
lsd
gnupg
kitty
tmux
];
programs = {
home-manager.enable = true;
git = {
enable = true;
userName = "CherryKitten";
userEmail = "git@cherrykitten.dev";
signing.key = "0xC01A7CBBA617BD5F";
signing.signByDefault = true;
extraConfig = {
init = {defaultBranch = "main";};
core = {editor = "nvim";};
pull.rebase = true;
};
};
nushell = {
enable = true;
};
};
home.sessionVariables = {
EDITOR = "nvim";
};
}