Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos/filesystems: init bindfs (#337697)

authored by

Arne Keller and committed by
GitHub
fd9f17ef 53b58956

+16
+1
nixos/modules/module-list.nix
··· 1783 1783 ./tasks/filesystems.nix 1784 1784 ./tasks/filesystems/apfs.nix 1785 1785 ./tasks/filesystems/bcachefs.nix 1786 + ./tasks/filesystems/bindfs.nix 1786 1787 ./tasks/filesystems/btrfs.nix 1787 1788 ./tasks/filesystems/cifs.nix 1788 1789 ./tasks/filesystems/ecryptfs.nix
+15
nixos/modules/tasks/filesystems/bindfs.nix
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + ... 6 + }: 7 + { 8 + config = lib.mkIf (config.boot.supportedFilesystems."fuse.bindfs" or false) { 9 + system.fsPackages = [ pkgs.bindfs ]; 10 + }; 11 + 12 + meta = { 13 + maintainers = with lib.maintainers; [ Luflosi ]; 14 + }; 15 + }