Files
nix/hosts/common/user/configs/console/wget/default.nix
2024-07-31 15:33:04 +03:00

8 lines
146 B
Nix

{
username ? throw "username argument is required",
}:
{ pkgs, ... }:
{
home-manager.users.${username}.home.packages = with pkgs; [ wget ];
}