13 lines
159 B
Nix
13 lines
159 B
Nix
{ pkgs, username, ... }:
|
|
{
|
|
hjem.users.${username}.packages = with pkgs; [
|
|
btop
|
|
curl
|
|
neofetch
|
|
tlrc
|
|
unzip
|
|
wget
|
|
wl-clipboard
|
|
];
|
|
}
|