This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /etc/nixos/nm-clat.nix | |
| { config, pkgs, ... }: | |
| { | |
| # Use NetworkManager | |
| networking.networkmanager.enable = true; | |
| # Horrible hack to create a dispatcher to enable CLAT every time a connection | |
| # comes up since networkmanager.settings doesn't seem to accept settings that | |
| # only exist in the upstream dev branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Names of latest versions of each package | |
| export VERSION_PCRE=pcre-8.38 | |
| export VERSION_ZLIB=zlib-1.2.8 | |
| export VERSION_LIBRESSL=libressl-2.3.4 | |
| export VERSION_NGINX=nginx-1.10.0 | |
| # URLs to the source directories | |
| export SOURCE_LIBRESSL=http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/ |