Archived
1
0
Fork 0
This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
nix-darwin/home/home.nix
2025-06-28 04:32:01 -05:00

61 lines
1.1 KiB
Nix

{ pkgs, ... }:
{
home = {
stateVersion = "23.11";
packages = with pkgs; [
htop
curl
coreutils
appcleaner
nil
grandperspective
iterm2
nerd-fonts.jetbrains-mono
];
shell = {
enableNushellIntegration = true;
enableZshIntegration = true;
enableFishIntegration = true;
};
};
programs = {
helix = {
enable = true;
defaultEditor = true;
};
nushell = {
enable = true;
};
starship = {
enable = true;
enableFishIntegration = true;
enableNushellIntegration = true;
enableZshIntegration = true;
};
git = {
enable = true;
delta = {
enable = true;
};
signing = {
format = "openpgp";
signByDefault = true;
};
userEmail = "git@ethanreece.com";
userName = "Ethan Reece";
};
};
services = {
gpg-agent = {
enable = true;
enableFishIntegration = true;
enableNushellIntegration = true;
enableZshIntegration = true;
};
};
}