28 lines
580 B
Nix
28 lines
580 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
xdg.enable = true;
|
|
|
|
home.stateVersion = "25.05";
|
|
home.username = "imnyang";
|
|
home.homeDirectory = "/Users/imnyang";
|
|
home.packages = import ./packages.nix { inherit pkgs inputs; };
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
};
|
|
|
|
imports = [
|
|
"${inputs.self}/modules/home/devtool/neovim.nix"
|
|
"${inputs.self}/modules/home/devtool/ghostty.nix"
|
|
"${inputs.self}/modules/home/devtool/btop.nix"
|
|
"${inputs.self}/modules/home/devtool/zed.nix"
|
|
./config/git.nix
|
|
./config/shell.nix
|
|
];
|
|
}
|