45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{...}: {
|
|
imports = [
|
|
../modules/home/doom
|
|
../modules/home/kitty
|
|
../modules/home/ranger
|
|
../modules/home/yubikey.nix
|
|
../modules/home/zsh
|
|
];
|
|
|
|
# Home Manager needs a bit of information about you and the paths it should
|
|
# manage.
|
|
home.username = "jroeger";
|
|
home.homeDirectory = "/home/jroeger";
|
|
|
|
yubikey.pinentry = "gnome3";
|
|
|
|
# This value determines the Home Manager release that your configuration is
|
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
|
# introduces backwards incompatible changes.
|
|
#
|
|
# You should not change this value, even if you update Home Manager. If you do
|
|
# want to update the value, then make sure to first check the Home Manager
|
|
# release notes.
|
|
home.stateVersion = "24.11"; # Please read the comment before changing.
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "vim";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
|
|
# Git
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Jonas Röger";
|
|
userEmail = "jonas.kieran.roeger@iml.fraunhofer.de";
|
|
difftastic.enable = true;
|
|
signing = {
|
|
signByDefault = true;
|
|
key = "4000EB35E1AE0F07";
|
|
};
|
|
};
|
|
}
|