Add barrier module for controlling multiple systems
Alan Pearce alan@alanpearce.eu
Sat, 28 Sep 2019 22:17:01 +0200
1 files changed, 7 insertions(+), 0 deletions(-)
jump to
A modules/programs/barrier.nix
@@ -0,0 +1,7 @@+{ config, pkgs, ... }: { + environment.systemPackages = with pkgs; [ + barrier + ]; + + networking.firewall.allowedTCPPorts = [ 24800 ]; +}