From 598e92640eb9ece183f457e32d5cfee047f83787 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Fri, 18 Jul 2025 23:18:26 +0200 Subject: [PATCH] gui: dolphin: init Add dolphin, a graphical file manager with kio-fuse and kio-extras to support mounting of filesystems --- modules/programs/gui/dolphin.mod.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/programs/gui/dolphin.mod.nix diff --git a/modules/programs/gui/dolphin.mod.nix b/modules/programs/gui/dolphin.mod.nix new file mode 100644 index 0000000..6f13d56 --- /dev/null +++ b/modules/programs/gui/dolphin.mod.nix @@ -0,0 +1,17 @@ +{ + config, + lib, + pkgs, + ... +}: let + inherit (lib.modules) mkIf; + inherit (config.modules.system) isGraphical; +in { + config = mkIf isGraphical { + environment.systemPackages = with pkgs; [ + kdePackages.dolphin + kdePackages.kio-fuse #to mount remote filesystems via FUSE + kdePackages.kio-extras #extra protocols support (sftp, fish and more) + ]; + }; +}