42 lines
837 B
Nix
42 lines
837 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home = {
|
|
username = "martin";
|
|
homeDirectory = "/home/martin";
|
|
|
|
# You can update Home Manager without changing this value. See
|
|
# the Home Manager release notes for a list of state version
|
|
# changes in each release.
|
|
stateVersion = "24.11";
|
|
};
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs = {
|
|
git = {
|
|
enable = true;
|
|
userName = "Martin Berg Alstad";
|
|
userEmail = "git@martials.no";
|
|
};
|
|
|
|
home-manager.enable = true;
|
|
|
|
kitty.enable = true;
|
|
|
|
neovim = {
|
|
enable = true;
|
|
vimAlias = true;
|
|
viAlias = true;
|
|
};
|
|
};
|
|
|
|
services = {
|
|
gpg-agent = {
|
|
enable = true;
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
};
|
|
};
|
|
}
|