nix-infra/users/sammy.nix

29 lines
558 B
Nix
Raw Normal View History

2024-03-24 18:02:29 +00:00
{ ... }: {
2024-03-24 18:03:41 +00:00
imports = [ ./common ];
2024-03-24 18:02:28 +00:00
programs.git = {
userName = "CherryKitten";
userEmail = "sammy@cherrykitten.dev";
2024-03-24 18:02:28 +00:00
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";
};
2024-03-24 19:24:12 +00:00
programs.gpg = {
enable = true;
publicKeys = [
{
source = ../cherrykitten.pgp;
trust = "ultimate";
}
];
};
2024-03-24 18:02:28 +00:00
}