config/users/natalie/laptop/home.nix

24 lines
349 B
Nix
Raw Normal View History

2025-05-07 10:22:05 -07:00
{
inputs,
config,
pkgs,
lib,
user,
host,
...
} @ args: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
#set up nixvim
# ../../modules/nixvim
];
home = {
stateVersion = "23.05"; # Please read the comment before changing.
# shell = pkgs.fish;
sessionPath = [
"$HOME/.emacs.d/bin"
];
};
}