nixos/sshfs: enable fuse

This commit is contained in:
Martin Weinelt
2026-06-02 02:43:40 +02:00
parent 28c1501947
commit ab51f0dbef
@@ -10,6 +10,8 @@
lib.mkIf
(config.boot.supportedFilesystems.sshfs or config.boot.supportedFilesystems."fuse.sshfs" or false)
{
programs.fuse.enable = true;
system.fsPackages = [ pkgs.sshfs ];
};
}