Fix pkgs and add busybox to genesis

This commit is contained in:
Greg Hellings
2023-08-25 15:52:01 -05:00
parent 331120d0dc
commit f982dbe48d
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -92,7 +92,10 @@ in
}; };
extraConfig = "${extraConfig}"; extraConfig = "${extraConfig}";
}; };
environment.systemPackages = [ pkgs.curl ]; environment.systemPackages = with pkgs; [
busybox
curl
];
# Regularly update DNS block list # Regularly update DNS block list
services.cron = { services.cron = {
+1 -1
View File
@@ -15,7 +15,7 @@
./tailscale.nix ./tailscale.nix
]; ];
environment.systemPackages = [ environment.systemPackages = with pkgs; [
lshw lshw
]; ];