nix-infra/modules/users/sammy.nix
2024-03-24 19:02:25 +01:00

43 lines
765 B
Nix

{
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
tmux
colmena
];
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;
};
};
fish = {
enable = true;
};
};
home.sessionVariables = {
EDITOR = "nvim";
};
}