wow
This commit is contained in:
parent
eb3d86f744
commit
0712121df9
3 changed files with 32 additions and 8 deletions
|
|
@ -37,6 +37,8 @@ in
|
|||
neovim
|
||||
nil
|
||||
nixd
|
||||
codex
|
||||
gcc
|
||||
bind
|
||||
dig
|
||||
];
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue