(wip) Setup btrfs impermanence

This commit is contained in:
Madeleine Sydney
2024-12-28 20:29:43 -07:00
parent 6240431d36
commit 9a99a6dfb7
4 changed files with 140 additions and 50 deletions

View File

@@ -0,0 +1,13 @@
{ 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;
};
};
}