nix-flakes/hosts/machine/kanade/home/default.nix
imnyang bbac123a8d
Some checks failed
CI / check (push) Has been cancelled
CI / ida (push) Has been cancelled
CI / cpt (push) Has been cancelled
CI / build-nixos (ena) (push) Has been cancelled
CI / build-nixos (hako) (push) Has been cancelled
CI / build-nixos (kazusa) (push) Has been cancelled
CI / build-nixos (mizuki) (push) Has been cancelled
wow
2026-07-03 00:45:07 +09:00

27 lines
505 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/neovim.nix"
"${inputs.self}/modules/home/ghostty.nix"
"${inputs.self}/modules/home/zed.nix"
./config/git.nix
./config/shell.nix
];
}