config/users/natalie/laptop/home.nix

24 lines
349 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,
user,
host,
2024-09-27 19:01:35 -07:00
...
} @ args: {
2025-04-21 14:46:41 -07:00
imports = [
inputs.nixvim.homeManagerModules.nixvim
#set up nixvim
2025-04-30 12:38:05 -07:00
# ../../modules/nixvim
2025-04-21 14:46:41 -07:00
];
2025-04-18 15:55:34 -07:00
home = {
stateVersion = "23.05"; # Please read the comment before changing.
# shell = pkgs.fish;
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
};
}