names are fun. for a few weeks i've been presenting publicly with the name 'clover', and i like it a lot. for me it's sort of a name tier, where friends can call me chloe for short, but my full name is clover. (and for people very close to me, there's more names to unlock). julia to fish is from a misunderstanding. i used the name julia with her a lot because it sounded more like a usual name, so i assumed it was. but no, that's just a nickname. an extra option. her preferred name is fish. simple as. i am sorry for this confusion.
28 lines
500 B
Nix
28 lines
500 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# these programs are not globally installed to reduce distractions.
|
|
# most of these are needed for my work environment.
|
|
programs = {
|
|
bun.enable = true;
|
|
zsh.profileExtra = ''
|
|
_bun() {
|
|
local context state line
|
|
_arguments -C '*:file:_files'
|
|
}
|
|
'';
|
|
};
|
|
home.packages = with pkgs; [
|
|
doppler
|
|
deno
|
|
nodejs_22
|
|
rustup
|
|
typescript
|
|
pm2
|
|
pnpm
|
|
yt-dlp
|
|
spotdl
|
|
zig
|
|
ssm-session-manager-plugin
|
|
awscli
|
|
];
|
|
}
|