mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-02-02 07:45:16 +01:00
17 lines
357 B
Nix
17 lines
357 B
Nix
{ lib, config, options, pkgs, modulesPath, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.yoda.btrfsMounts;
|
|
in
|
|
{
|
|
options = {
|
|
yoda.btrfsFileSystems = mkOption {
|
|
type = types.listOf types.path;
|
|
default = ["/"];
|
|
example = ["/" "/mnt/data"];
|
|
description = ''
|
|
List containing each mounted BTRFS filesystem once.
|
|
'';
|
|
};
|
|
};
|
|
} |