From ceca24e64a2d0aa452d6b0fe702eab303d6a83e6 Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 3 Feb 2024 04:11:52 +0900 Subject: feat(modules): add persistence --- modules/persistence.nix | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 modules/persistence.nix (limited to 'modules/persistence.nix') diff --git a/modules/persistence.nix b/modules/persistence.nix new file mode 100644 index 0000000..3131d61 --- /dev/null +++ b/modules/persistence.nix @@ -0,0 +1,43 @@ +{ config, lib, ... }: + + +with lib; +let + cfg = config.modules.persistence; +in +{ + options.modules.persistence = { + enable = mkEnableOption "impermanence persistence"; + + storagePath = lib.mkOption { + type = types.path; + description = '' + The path to persistent storage where the real + files and directories should be stored. + ''; + }; + + directories = mkOption { + type = types.listOf types.str; + default = [ ]; + }; + }; + + config = mkIf cfg.enable { + fileSystems.${cfg.storagePath}.neededForBoot = true; + + environment.persistence.${cfg.storagePath}.directories = cfg.directories; + + services.openssh.hostKeys = [ + { + path = "${cfg.storagePath}/ssh/ssh_host_ed25519_key"; + type = "ed25519"; + } + { + path = "${cfg.storagePath}/ssh/ssh_host_rsa_key"; + type = "rsa"; + bits = 4096; + } + ]; + }; +} -- cgit 1.4.1