2025-07-18 23:18:26 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
2025-07-20 01:23:48 +02:00
|
|
|
}:
|
|
|
|
let
|
2025-07-18 23:18:26 +02:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (config.modules.system) isGraphical;
|
2025-07-20 01:23:48 +02:00
|
|
|
in
|
|
|
|
{
|
2025-07-18 23:18:26 +02:00
|
|
|
config = mkIf isGraphical {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
kdePackages.dolphin
|
2025-07-20 01:23:48 +02:00
|
|
|
kdePackages.kio-fuse # to mount remote filesystems via FUSE
|
|
|
|
kdePackages.kio-extras # extra protocols support (sftp, fish and more)
|
2025-07-18 23:18:26 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|