From 7eb3a348171dee9700d9ad46060fe18faee2b7ea Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sat, 6 Apr 2024 21:03:33 +0200 Subject: [PATCH] Add krfb + samba --- modules/plasma.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/plasma.nix b/modules/plasma.nix index 8d7ed86..c1d4c76 100644 --- a/modules/plasma.nix +++ b/modules/plasma.nix @@ -9,4 +9,10 @@ services.desktopManager.plasma6.enable = true; programs.kdeconnect.enable = true; + + environment.systemPackages = with pkgs; with kdePackages; [ + krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor" + kdenetwork-filesharing # Use to share with samba from dolphin + samba4Full # Required for kdenetwork-filesharing + ]; }