marleyos/home/wget/default.nix

21 lines
310 B
Nix
Raw Normal View History

2024-10-30 20:02:37 -07:00
{
pkgs,
lib,
config,
...
}: {
2024-10-26 20:17:00 -07:00
home.packages = with pkgs; [
wget
];
xdg.configFile."wgetrc" = {
enable = true;
source = ./wgetrc;
target = "wgetrc";
};
2024-10-30 20:02:37 -07:00
home.sessionVariables = lib.mkIf config.home.preferXdgDirectories {
WGETRC = "${config.xdg.configHome}/wgetrc";
};
2024-10-26 20:17:00 -07:00
}