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