config/users/chloe/home.nix

25 lines
390 B
Nix
Raw Normal View History

2025-05-07 10:22:05 -07:00
{
inputs,
pkgs,
lib,
...
}: {
home = {
stateVersion = "23.05"; # Please read the comment before changing.
packages = [
pkgs.neovim
pkgs.nh
pkgs.ffmpeg
];
};
programs = {
# sort-lines:start
hyfetch.enable = true;
zsh.enable = true;
# sort-lines:end
# use a git-specific email
git.userEmail = "git@paperclover.net";
};
}