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
|
|
|
config,
|
|
|
|
pkgs,
|
2025-03-28 21:09:28 -07:00
|
|
|
lib,
|
2025-04-19 13:50:58 -07:00
|
|
|
user,
|
2024-09-27 19:01:35 -07:00
|
|
|
...
|
|
|
|
}: {
|
2025-04-19 10:35:31 -07:00
|
|
|
programs = import ../shared/home-programs.nix {inherit inputs config pkgs lib;};
|
2024-09-27 19:01:35 -07:00
|
|
|
|
2025-04-18 15:55:34 -07:00
|
|
|
home = {
|
2025-04-19 13:50:58 -07:00
|
|
|
username = user;
|
2025-04-19 10:35:31 -07:00
|
|
|
homeDirectory = "/Users/nmarks/";
|
2025-04-18 15:55:34 -07:00
|
|
|
# Home Manager needs a bit of information about you and the paths it should
|
|
|
|
# manage.
|
|
|
|
# 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.
|
|
|
|
stateVersion = "23.05"; # Please read the comment before changing.
|
2024-09-27 19:01:35 -07:00
|
|
|
|
2025-04-18 15:55:34 -07:00
|
|
|
packages = pkgs.callPackage ../shared/packages.nix {};
|
2024-09-27 19:01:35 -07:00
|
|
|
|
2025-04-18 15:55:34 -07:00
|
|
|
sessionVariables = {
|
|
|
|
EDITOR = "nvim";
|
|
|
|
VISUAL = "nvim";
|
|
|
|
TERMINAL = "ghostty";
|
|
|
|
BROWSER = "firefox";
|
|
|
|
};
|
|
|
|
sessionPath = [
|
|
|
|
"$HOME/.emacs.d/bin"
|
|
|
|
];
|
2024-09-27 19:01:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
}
|