marleyos/home/wget/default.nix
2024-10-26 20:32:23 -07:00

11 lines
163 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
wget
];
xdg.configFile."wgetrc" = {
enable = true;
source = ./wgetrc;
target = "wgetrc";
};
}