faucet(fs): add configuration for xfs, ext4, btrfs

This commit is contained in:
514fpv 2024-01-02 14:49:06 +08:00
parent f20a03c356
commit a72a35a271
Signed by: koishi
SSH key fingerprint: SHA256:VkIdW3jUIiqecV2WNAje2fGU5lEhN0XZ58DN0NS4pv0
4 changed files with 130 additions and 0 deletions

10
faucet/fs/ext4.nix Normal file
View file

@ -0,0 +1,10 @@
{ lib
, config
, ... }: with lib; let
cfg = config.faucet.fs;
in mkIf (cfg.type == "ext4") {
fileSystems."/nix" =
{ device = "/dev/disk/by-uuid/${cfg.store}";
fsType = "ext4";
};
}