Files
sydnix/modules/nixos/filesystemType.nix
2024-12-28 20:29:57 -07:00

14 lines
245 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
options = {
sydnix.filesystemType = mkOption {
type = types.nullOr (types.enum [ "btrfs" ]);
description = "The name of the filesystem to be used.";
default = null;
};
};
}