ark/modules/persist/null.nix

17 lines
257 B
Nix
Raw Permalink Normal View History

2024-05-28 05:49:23 +03:00
{lib, ...}: {
imports = [./default.nix];
config = {
system.persistDir = "null";
};
options = {
home.persistence = lib.mkOption {
type = lib.raw;
};
environment.persistence = lib.mkOption {
type = lib.raw;
};
};
}