From d7483ed8505710033384d7fabad34470818bc760 Mon Sep 17 00:00:00 2001 From: Chris Wells Date: Thu, 15 Feb 2024 15:41:07 -0600 Subject: Added dev path. Now to figure out how to make my own one-click packages --- modules/plato.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'modules/plato.nix') diff --git a/modules/plato.nix b/modules/plato.nix index 2fb1016..0d0d05d 100644 --- a/modules/plato.nix +++ b/modules/plato.nix @@ -13,11 +13,18 @@ in { enable = mkEnableOption "Plato"; path = mkOption { - type = types.srt; + type = types.str; default = ".adds/plato"; description = "Relative path to Plato within src"; }; + devPath = mkOption { + type = types.str; + default = "/mnt/onboard/${cfg.path}"; + readOnly = true; + internal = true; + }; + file = importOption ./lib/file.nix; manifest = importOption ./lib/manifest.nix; @@ -194,7 +201,7 @@ in { action = "cmd_spawn"; arg = [ "quiet" - "exec /mnt/onboard/${cfg.path}/plato.sh" + "exec ${cfg.devPath}/plato.sh" ]; }; }; -- cgit v1.2.3