marleyos/home/wget/default.nix

12 lines
163 B
Nix
Raw Normal View History

2024-10-26 20:17:00 -07:00
{pkgs, ...}: {
home.packages = with pkgs; [
wget
];
xdg.configFile."wgetrc" = {
enable = true;
source = ./wgetrc;
target = "wgetrc";
};
}