15 lines
193 B
Nix
15 lines
193 B
Nix
{
|
|
# pkgs,
|
|
# inputs,
|
|
...
|
|
}: {
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
home.username = "jet";
|
|
home.homeDirectory = "/home/jet";
|
|
home.stateVersion = "23.11";
|
|
}
|