Add Barrier KVM

This commit is contained in:
Kevin Kandlbinder 2023-05-15 15:07:34 +02:00
parent 1e2c6086ab
commit fb6c73db8e
Signed by: kevin
GPG key ID: 1460B586646E180D
3 changed files with 10 additions and 0 deletions

View file

@ -14,6 +14,7 @@
../modules/yubikey.nix
../modules/gaming/steam.nix
../modules/gaming/helpers.nix
../modules/barrier.nix
];
boot.loader.systemd-boot.enable = true;

View file

@ -15,6 +15,7 @@
../modules/yubikey.nix
../modules/gaming/steam.nix
../modules/gaming/helpers.nix
../modules/barrier.nix
#../modules/mullvad.nix
];

View file

@ -0,0 +1,8 @@
{pkgs, ...}:
{
environment.systemPackages = [
pkgs.barrier
];
networking.firewall.allowedTCPPorts = [ 24800 ];
}