From 117928583d9c5c5e207e2dd525c6ba5d7aeb3973 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Thu, 4 Dec 2025 20:24:24 +0100 Subject: [PATCH] profile/desktop-apps: use programs.wayvnc --- profiles/desktop-apps/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/profiles/desktop-apps/default.nix b/profiles/desktop-apps/default.nix index 19f5638..dba1437 100644 --- a/profiles/desktop-apps/default.nix +++ b/profiles/desktop-apps/default.nix @@ -37,7 +37,6 @@ in telegram-desktop thunderbird vlc - wayvnc zathura zeal # terminal @@ -47,9 +46,13 @@ in keychain ]; - programs.wireshark = { - enable = true; - package = pkgs.wireshark; # enable the gui + programs = { + wayvnc.enable = true; + wireshark = { + enable = true; + package = pkgs.wireshark; # enable the gui + }; + }; }; }