config/users/chloe/home.nix

25 lines
390 B
Nix
Raw Normal View History

2024-09-27 19:01:35 -07:00
{
2025-04-19 10:35:31 -07:00
inputs,
2024-09-27 19:01:35 -07:00
pkgs,
2025-03-28 21:09:28 -07:00
lib,
2024-09-27 19:01:35 -07:00
...
}: {
2025-04-18 15:55:34 -07:00
home = {
stateVersion = "23.05"; # Please read the comment before changing.
packages = [
pkgs.neovim
pkgs.nh
pkgs.ffmpeg
2025-04-18 15:55:34 -07:00
];
2024-09-27 19:01:35 -07:00
};
programs = {
# sort-lines:start
hyfetch.enable = true;
zsh.enable = true;
# sort-lines:end
# use a git-specific email
git.userEmail = "git@paperclover.net";
};
2024-09-27 19:01:35 -07:00
}