config/users/natalie/laptop/home.nix
2025-08-11 22:29:50 -07:00

27 lines
350 B
Nix

{
inputs,
config,
pkgs,
lib,
user,
host,
...
}@args:
{
home = {
stateVersion = "23.05"; # Please read the comment before changing.
# shell = pkgs.fish;
sessionPath = [
"$HOME/.emacs.d/bin"
];
sessionVariables = {
};
packages = with pkgs; [
#PDF viewer for VimTeX
skimpdf
];
};
}