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
normcap: fix on GNOME wayland when used via keybind or alt-f2 (#351763)
[NixPkgs.git]
/
nixos
/
modules
/
tasks
/
filesystems
/
sshfs.nix
blob
f070779ecc54cb43f6a36b9b9e443a5afc2f7a25
1
{
2
config,
3
lib,
4
pkgs,
5
...
6
}:
7
8
{
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
};
15
}