feat(ops/nixos/nugget): Enable tailscale-relay

This commit is contained in:
Vincent Ambo 2020-02-11 00:55:46 +00:00
parent b586a04a0a
commit a8792f8372

View file

@ -11,6 +11,10 @@ config: let
lieer = (pkgs.third_party.lieer {});
in pkgs.lib.fix(self: {
imports = [
../modules/tailscale.nix
];
hardware = {
pulseaudio.enable = true;
cpu.intel.updateMicrocode = true;
@ -237,6 +241,14 @@ in pkgs.lib.fix(self: {
};
};
# Use Tailscale \o/
services.tailscale = {
enable = true;
relayConf = "/etc/tailscale/relay.conf";
aclFile = null; # allow all traffic for testing
package = pkgs.third_party.tailscale;
};
# ... and other nonsense.
system.stateVersion = "19.09";
})