mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
16 lines
236 B
Nix
16 lines
236 B
Nix
![]() |
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
config = lib.mkIf (config.boot.supportedFilesystems."fuse.bindfs" or false) {
|
||
|
system.fsPackages = [ pkgs.bindfs ];
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
maintainers = with lib.maintainers; [ Luflosi ];
|
||
|
};
|
||
|
}
|