Files
rice-flakes/modules/core/packages.nix
2026-01-30 23:29:19 -06:00

25 lines
319 B
Nix

{ pkgs, username, inputs, ... }:
{
environment.systemPackages = with pkgs; [
zsh
];
hjem.users.${username}.packages = with pkgs; [
clang
lld
llvmPackages.bintools
tlrc
rustc
cargo
unzip
neovim
btop
curl
git
neofetch
statix
wget
wl-clipboard
];
}