Dolphin: Difference between revisions

Lint (talk | contribs)
m Provided name of dolphin package for convenience sake.
Added kio to the dependencies for KIO-Fuse
 
(One intermediate revision by one other user not shown)
Line 14: Line 14:
=== KIO-Fuse ===
=== KIO-Fuse ===
If you need to mount network shares you can use KIO-Fuse: {{file|/etc/nixos/configuration.nix|nix|<nowiki>
If you need to mount network shares you can use KIO-Fuse: {{file|/etc/nixos/configuration.nix|nix|<nowiki>
environment.systemPackages = with pkgs; [  
environment.systemPackages = with pkgs; [
    kdePackages.kio # needed since 25.11
     kdePackages.kio-fuse #to mount remote filesystems via FUSE
     kdePackages.kio-fuse #to mount remote filesystems via FUSE
     kdePackages.kio-extras #extra protocols support (sftp, fish and more)
     kdePackages.kio-extras #extra protocols support (sftp, fish and more)
Line 21: Line 22:


=== Install ===
=== Install ===
{{File|3=<nowiki>
{{File|3=environment.systemPackages = with pkgs; [
    environment.systemPackages = with pkgs; [
    kdePackages.dolphin # This is the actual dolphin package
        kdePackages.dolphin # This is the actual dolphin package
];|name=/etc/nixos/configuration.nix|lang=nix}}
    ];
<nowiki>|name=/etc/nixos/configuration.nix|lang=nix}}
 
```
 
&lt;nowiki&gt;
 
    environment.systemPackages = with pkgs; [
 
        kdePackages.dolphin # This is the actual dolphin package
 
    ];
 
&lt;nowiki&gt;
 
```


=== File previews ===
=== File previews ===