nix-infra/users/sammy/home.nix
2024-04-01 19:16:35 +02:00

28 lines
577 B
Nix

{ ... }: {
imports = [ ../../modules/home ];
programs.git = {
userName = "CherryKitten";
userEmail = "sammy@cherrykitten.dev";
signing.key = "0xC01A7CBBA617BD5F";
signing.signByDefault = true;
};
home.username = "sammy";
home.homeDirectory = "/home/sammy";
home.stateVersion = "23.11"; # Please read the comment before changing.
home.sessionVariables = {
EDITOR = "nvim";
};
programs.gpg = {
enable = true;
publicKeys = [
{
source = ../../files/cherrykitten.pgp;
trust = "ultimate";
}
];
};
}