25 lines
No EOL
396 B
Nix
25 lines
No EOL
396 B
Nix
{ config, user, ... }: {
|
|
imports = [
|
|
./common.nix
|
|
];
|
|
|
|
config = {
|
|
home.stateVersion = "23.11";
|
|
|
|
sops = {
|
|
age.sshKeyPaths = [
|
|
"${config.home.homeDirectory}/.ssh/id_ed25519"
|
|
];
|
|
};
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
|
|
git = {
|
|
enable = true;
|
|
userName = user.fullName;
|
|
userEmail = user.mail;
|
|
};
|
|
};
|
|
};
|
|
} |