18 lines
204 B
Nix
18 lines
204 B
Nix
{ pkgs, username, ... }:
|
|
{
|
|
hjem.users.${username}.packages = with pkgs; [
|
|
# general
|
|
neovim
|
|
git
|
|
|
|
# lua
|
|
stylua
|
|
lua-language-server
|
|
|
|
# nix
|
|
nixd
|
|
nixfmt
|
|
statix
|
|
];
|
|
}
|