Files
nix-config/modules/nixos/impermanence/options.nix
mjallen18 7e82df3df7 idk
2025-08-21 21:04:11 -05:00

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