10 lines
220 B
Nix
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;
|
|
};
|
|
}
|