This commit is contained in:
Akiyama Mizuki 2026-08-11 15:52:28 +09:00
commit 0712121df9
3 changed files with 32 additions and 8 deletions

View file

@ -37,6 +37,8 @@ in
neovim
nil
nixd
codex
gcc
bind
dig
];

View file

@ -12,14 +12,36 @@ in
home.username = "imnyang";
home.homeDirectory = "/home/imnyang";
home.packages = [
home.packages = with pkgs; [
nr
nrr
# Rust development
rustc
cargo
rustfmt
clippy
rust-analyzer
cargo-watch
cargo-nextest
# JavaScript / TypeScript development
bun
nodejs
typescript
typescript-language-server
biome
# General build and workflow tools
pkg-config
openssl
just
watchexec
];
home.sessionVariables = {
EDITOR = "nano";
VISUAL = "nano";
EDITOR = "nvim";
VISUAL = "nvim";
};
programs.fish = {
@ -34,7 +56,7 @@ in
la = "eza -a";
lla = "eza -la";
rebuild = "sudo nixos-rebuild switch --flake .#hako";
rebuild = "sudo nixos-rebuild switch --flake .#amia";
update = "nix flake update";
clean = "sudo nix-collect-garbage -d";
};