marleyos/home/wget/default.nix

21 lines
310 B
Nix
Raw Normal View History

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