Add vnc client.

This commit is contained in:
Tom Alexander
2025-01-17 20:30:16 -05:00
parent 14baaddcff
commit b4947bcff6
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = lib.mkIf config.me.graphical {
environment.systemPackages = with pkgs; [
wlvncc
];
};
}