Files
nix/hosts/elara/options.nix
2025-03-10 18:59:06 +00:00

10 lines
220 B
Nix

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