nixos/filesystems: init bindfs (#337697)

This commit is contained in:
Arne Keller
2025-03-30 22:10:57 +02:00
committed by GitHub
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
config,
lib,
pkgs,
...
}:
{
config = lib.mkIf (config.boot.supportedFilesystems."fuse.bindfs" or false) {
system.fsPackages = [ pkgs.bindfs ];
};
meta = {
maintainers = with lib.maintainers; [ Luflosi ];
};
}