gui: dolphin: init
Add dolphin, a graphical file manager with kio-fuse and kio-extras to support mounting of filesystems
This commit is contained in:
parent
681cd8a453
commit
598e92640e
1 changed files with 17 additions and 0 deletions
17
modules/programs/gui/dolphin.mod.nix
Normal file
17
modules/programs/gui/dolphin.mod.nix
Normal file
|
@ -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)
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue