mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
18 lines
269 B
Nix
18 lines
269 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
config =
|
|
lib.mkIf
|
|
(config.boot.supportedFilesystems.sshfs or config.boot.supportedFilesystems."fuse.sshfs" or false)
|
|
{
|
|
programs.fuse.enable = true;
|
|
|
|
system.fsPackages = [ pkgs.sshfs ];
|
|
};
|
|
}
|