13 lines
295 B
Nix
13 lines
295 B
Nix
{ lib, namespace, ... }:
|
|
with lib;
|
|
{
|
|
options.${namespace}.impermanence = {
|
|
enable = mkEnableOption "enable impermanence";
|
|
persistencePath = mkOption {
|
|
type = types.str;
|
|
default = "/nix/persist/system";
|
|
description = "Path to the persistence directory";
|
|
};
|
|
};
|
|
}
|