25 lines
274 B
Nix
25 lines
274 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
hjem.users.${username}.packages = with pkgs; [
|
|
inputs.zen-browser.packages."${system}".default
|
|
neovim
|
|
statix
|
|
git
|
|
zsh
|
|
neofetch
|
|
btop
|
|
wl-clipboard
|
|
kitty
|
|
vim
|
|
wget
|
|
curl
|
|
foot
|
|
];
|
|
}
|