config/hosts/laptop/home.nix

25 lines
496 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
config,
pkgs,
2025-03-28 21:09:28 -07:00
lib,
userSettings,
systemSettings,
2024-09-27 19:01:35 -07:00
...
}: {
programs = import ../shared/home-programs.nix {inherit inputs config pkgs lib userSettings;};
2024-09-27 19:01:35 -07:00
2025-04-18 15:55:34 -07:00
home = {
inherit (userSettings) username;
# homeDirectory = systemSettings.homeConfig;
2025-04-19 22:13:44 -07:00
# shell = pkgs.fish;
2025-04-18 15:55:34 -07:00
stateVersion = "23.05"; # Please read the comment before changing.
2024-09-27 19:01:35 -07:00
# packages = pkgs.callPackage ../shared/packages.nix {};
2024-09-27 19:01:35 -07:00
2025-04-18 15:55:34 -07:00
sessionPath = [
"$HOME/.emacs.d/bin"
];
2024-09-27 19:01:35 -07:00
};
}