Added barrier
This commit is contained in:
15
modules/home/programs/barrier.nix
Normal file
15
modules/home/programs/barrier.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ pkgs, hostName, ... }:
|
||||
|
||||
{
|
||||
services.barrier.client =
|
||||
if hostName == "xv-desktop"
|
||||
then {
|
||||
enable = true;
|
||||
}
|
||||
else { enable = false; };
|
||||
|
||||
|
||||
home.packages = if hostName == "xv-laptop" then with pkgs; [
|
||||
barrier
|
||||
] else [];
|
||||
}
|
Reference in New Issue
Block a user