20 lines
244 B
Nix
20 lines
244 B
Nix
{ pkgs, username, ... }:
|
|
{
|
|
hjem.users.${username}.packages = with pkgs; [
|
|
clang
|
|
lld
|
|
nixfmt
|
|
llvmPackages.bintools
|
|
tlrc
|
|
unzip
|
|
neovim
|
|
btop
|
|
curl
|
|
git
|
|
neofetch
|
|
statix
|
|
wget
|
|
wl-clipboard
|
|
];
|
|
}
|