repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git]
/
nixos
/
modules
/
tasks
/
filesystems
/
sshfs.nix
blob
63ff7f2b6b399eb96732309b21df90edc593d731
1
{ config, lib, pkgs, ... }:
2
3
{
4
config = lib.mkIf
5
(config.boot.supportedFilesystems.sshfs
6
or config.boot.supportedFilesystems."fuse.sshfs"
7
or false)
8
{
9
system.fsPackages = [ pkgs.sshfs ];
10
};
11
}