nixos/filesystems: init bindfs (#337697)
This commit is contained in:
15
nixos/modules/tasks/filesystems/bindfs.nix
Normal file
15
nixos/modules/tasks/filesystems/bindfs.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user