31 lines
432 B
Nix
31 lines
432 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# User-level GUI/CLI tools. Anything that doesn't need to be in the system
|
|
# closure should live here.
|
|
home.packages = with pkgs; [
|
|
# General utils
|
|
ripgrep
|
|
fd
|
|
jq
|
|
htop
|
|
btop
|
|
file
|
|
unzip
|
|
p7zip
|
|
mpv
|
|
# Productivity
|
|
claude-code
|
|
owncloud-client
|
|
gnucash
|
|
# Coding
|
|
vscode-fhs
|
|
nixd # Nix LSP
|
|
# Communications
|
|
discord
|
|
thunderbird-esr-bin
|
|
# Misc
|
|
spotify
|
|
];
|
|
}
|