11 lines
163 B
Nix
11 lines
163 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
wget
|
|
];
|
|
|
|
xdg.configFile."wgetrc" = {
|
|
enable = true;
|
|
source = ./wgetrc;
|
|
target = "wgetrc";
|
|
};
|
|
}
|