nix-flakes/hosts/machine/ribbon/home/home.nix
2026-07-05 13:31:18 +09:00

35 lines
624 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
home.stateVersion = "25.11";
home.username = "imnyang";
home.homeDirectory = "/home/imnyang";
home.packages = import ./packages.nix { inherit pkgs inputs; };
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
};
programs.git = {
enable = true;
settings = {
user = {
name = "imnyang";
email = "imnyang@pm.me";
};
commit.gpgsign = false;
init.defaultBranch = "main";
pull.rebase = false;
};
};
imports = [
"${inputs.self}/modules/home/devtool/neovim.nix"
./config/shell.nix
];
}