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

  networking.firewall.allowedTCPPorts = [ 24800 ];
}