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

8
flake.lock generated
View file

@ -3,11 +3,11 @@
"amiaBot": {
"flake": false,
"locked": {
"lastModified": 1786302918,
"narHash": "sha256-ZyPjVFNhYBDw8MCLGZUXd4Zt7yqyumdzl9KLT0A1qwM=",
"lastModified": 1786431091,
"narHash": "sha256-eD9hln0OXGMu2/8hgekpPI8YyMoxZxAq31JoSJAPH8I=",
"ref": "refs/heads/main",
"rev": "63a4eb47f60e679d60eae93310ca0612270497de",
"revCount": 27,
"rev": "a5a443faebe6c966ec9e603f952c5993313ffe23",
"revCount": 32,
"type": "git",
"url": "ssh://forgejo@mizuki.guru/imnyang/amia"
},

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";
};