config/hosts/laptop/home.nix

23 lines
504 B
Nix

{
inputs,
config,
pkgs,
lib,
userSettings,
...
}: {
programs = import ../../modules/shared/homeManagerPrograms.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 ../../modules/shared/packages.nix {};
sessionPath = [
"$HOME/.emacs.d/bin"
];
};
}