Files
rice-flakes/modules/core/packages/dev.nix
T
2026-04-24 18:51:05 -05:00

23 lines
259 B
Nix

{ pkgs, username, ... }:
{
hjem.users.${username}.packages = with pkgs; [
# general
neovim
git
# c++
clang
lld
llvmPackages.bintools
# lua
stylua
lua-language-server
# nix
nixd
nixfmt
statix
];
}