mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
nixos/filesystems: init bindfs (#337697)
This commit is contained in:
commit
fd9f17ef49
2 changed files with 16 additions and 0 deletions
|
@ -1783,6 +1783,7 @@
|
||||||
./tasks/filesystems.nix
|
./tasks/filesystems.nix
|
||||||
./tasks/filesystems/apfs.nix
|
./tasks/filesystems/apfs.nix
|
||||||
./tasks/filesystems/bcachefs.nix
|
./tasks/filesystems/bcachefs.nix
|
||||||
|
./tasks/filesystems/bindfs.nix
|
||||||
./tasks/filesystems/btrfs.nix
|
./tasks/filesystems/btrfs.nix
|
||||||
./tasks/filesystems/cifs.nix
|
./tasks/filesystems/cifs.nix
|
||||||
./tasks/filesystems/ecryptfs.nix
|
./tasks/filesystems/ecryptfs.nix
|
||||||
|
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue