NixOSConfig/lib/users/manuel.nix

25 lines
396 B
Nix
Raw Normal View History

2024-05-20 22:54:43 +00:00
{ config, user, ... }: {
imports = [
./common.nix
];
2024-05-09 00:07:05 +00:00
config = {
home.stateVersion = "23.11";
2024-05-20 22:54:43 +00:00
sops = {
age.sshKeyPaths = [
"${config.home.homeDirectory}/.ssh/id_ed25519"
];
};
programs = {
home-manager.enable = true;
git = {
enable = true;
userName = user.fullName;
userEmail = user.mail;
};
2024-05-09 00:07:05 +00:00
};
};
}