2021-12-28 16:19:29 +01:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
mosh
|
2022-01-04 07:31:19 +01:00
|
|
|
mediainfo
|
|
|
|
youtube-dl
|
2022-01-15 10:57:16 +01:00
|
|
|
ipset # for sshguard
|
2022-04-22 19:29:22 +02:00
|
|
|
|
|
|
|
unstable.vulnix
|
|
|
|
(pkgs.writers.writeBashBin "vulnix-system" ''
|
|
|
|
${pkgs.unstable.vulnix}/bin/vulnix --profile /nix/var/nix/profiles/system
|
|
|
|
'')
|
|
|
|
|
2021-12-28 16:19:29 +01:00
|
|
|
];
|
|
|
|
}
|