config/hosts/laptop/home.nix

24 lines
496 B
Nix

{
inputs,
config,
pkgs,
lib,
userSettings,
systemSettings,
...
}: {
programs = import ../shared/home-programs.nix {inherit inputs config pkgs lib userSettings;};
home = {
inherit (userSettings) username;
# homeDirectory = systemSettings.homeConfig;
# shell = pkgs.fish;
stateVersion = "23.05"; # Please read the comment before changing.
# packages = pkgs.callPackage ../shared/packages.nix {};
sessionPath = [
"$HOME/.emacs.d/bin"
];
};
}