Add sas private build flag

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-03-10 09:43:15 +00:00
parent 7a3129ba5f
commit 4d7e0d23aa
5 changed files with 39 additions and 11 deletions

9
hosts/elara/options.nix Normal file
View File

@@ -0,0 +1,9 @@
{ lib, ... }:
with lib;
{
options.sas.build.private = mkOption {
type = types.bool;
description = "Whether to build private SAS derivations (must be connected to the company VPN).";
default = false;
};
}