revamp nixops structure(s)

This commit is contained in:
Jonas Juselius
2022-08-19 15:33:10 +02:00
parent ece1b22711
commit cf956c739e
86 changed files with 8 additions and 2644 deletions

View File

@@ -0,0 +1,11 @@
self: super:
let
msmtp = super.msmtp.overrideAttrs (attrs: rec {
configureFlags = attrs.configureFlags ++ [ "--with-tls=openssl" ];
buildInputs = attrs.buildInputs ++ [ super.openssl ];
});
in
{
# inherit msmtp;
}