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) + ]; + }; +}