nix-config/home.nix
2024-03-15 22:50:47 -07:00

15 lines
193 B
Nix

{
# pkgs,
# inputs,
...
}: {
programs = {
neovim = {
enable = true;
};
};
home.username = "jet";
home.homeDirectory = "/home/jet";
home.stateVersion = "23.11";
}