feat(nix): migrate wget

This commit is contained in:
Stefan Imhoff
2024-07-13 12:08:37 +02:00
parent 094de36957
commit a5092c41a0
4 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
home.file = {
".wget" = { source = ./wget; };
};
home.packages = [ pkgs.wget ];
}