Files
sydnix/modules/nixos/filesystemType.nix
2024-12-29 02:43:35 -07:00

14 lines
245 B
Nix
Executable File

{ 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;
};
};
}