summary refs log tree commit diff stats
path: root/system/settings/programs/barrier.nix
blob: 788021d51489552500af1837f1ca15fb08a8083e (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  config,
  pkgs,
  ...
}: {
  environment.systemPackages = with pkgs; [
    barrier
  ];

  networking.firewall.allowedTCPPorts = [24800];
}