all repos — nixfiles @ c7946cd972c5d06e4d3c2912cf6ec7ca18c68327

System and user configuration, managed by nix and home-manager

Add barrier module for controlling multiple systems
Alan Pearce alan@alanpearce.eu
Sat, 28 Sep 2019 22:17:01 +0200
commit

c7946cd972c5d06e4d3c2912cf6ec7ca18c68327

parent

821cad4aa7d3241e618b2114ae3a91dc1372976b

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 ];
+}