normcap: fix on GNOME wayland when used via keybind or alt-f2 (#351763)
[NixPkgs.git] / nixos / modules / tasks / filesystems / sshfs.nix
blobf070779ecc54cb43f6a36b9b9e443a5afc2f7a25
2   config,
3   lib,
4   pkgs,
5   ...
6 }:
9   config =
10     lib.mkIf
11       (config.boot.supportedFilesystems.sshfs or config.boot.supportedFilesystems."fuse.sshfs" or false)
12       {
13         system.fsPackages = [ pkgs.sshfs ];
14       };