diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 8b85e3ede4c9..4d2eb3f04cca 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -1783,6 +1783,7 @@ ./tasks/filesystems.nix ./tasks/filesystems/apfs.nix ./tasks/filesystems/bcachefs.nix + ./tasks/filesystems/bindfs.nix ./tasks/filesystems/btrfs.nix ./tasks/filesystems/cifs.nix ./tasks/filesystems/ecryptfs.nix diff --git a/nixos/modules/tasks/filesystems/bindfs.nix b/nixos/modules/tasks/filesystems/bindfs.nix new file mode 100644 index 000000000000..a99829a04a0a --- /dev/null +++ b/nixos/modules/tasks/filesystems/bindfs.nix @@ -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 ]; + }; +}