Add barrier module for controlling multiple systems
1 file 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 ]; +}