all repos — nixfiles @ cbc29b05feb17649b64ab93e9bad899494bc51eb

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

system/settings/programs/barrier.nix (view raw)

1
2
3
4
5
6
7
8
9
10
{ config
, pkgs
, ...
}: {
  environment.systemPackages = with pkgs; [
    barrier
  ];

  networking.firewall.allowedTCPPorts = [ 24800 ];
}