config/hosts/laptop/home.nix

37 lines
992 B
Nix
Raw Normal View History

2024-09-27 19:01:35 -07:00
{
inputs,
config,
pkgs,
2025-03-28 21:09:28 -07:00
lib,
2024-09-27 19:01:35 -07:00
ghostty,
2025-02-18 16:34:53 -08:00
moonlight,
2024-09-27 19:01:35 -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.
home.stateVersion = "23.05"; # Please read the comment before changing.
2025-03-28 21:09:28 -07:00
home.packages = pkgs.callPackage ../shared/packages.nix {};
2024-09-27 19:01:35 -07:00
2025-03-28 21:09:28 -07:00
programs = import ../shared/home-programs.nix {inherit config pkgs lib;};
2024-09-27 19:01:35 -07:00
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
TERMINAL = "ghostty";
BROWSER = "firefox";
};
2025-04-01 16:53:29 -07:00
home.sessionPath = [
"$HOME/.emacs.d/bin"
];
2024-09-27 19:01:35 -07:00
# Let Home Manager install and manage itself.
}