Skip to content

Commit

Permalink
Add secrets support to the options
Browse files Browse the repository at this point in the history
  • Loading branch information
dkowis committed Jul 5, 2024
1 parent 1d98e31 commit 7d5b65b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions container.nix
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,14 @@ let
property = "SeccompProfile";
};

secrets = quadletUtils.mkOption {
type = types.listOf types.str;
default = [ ];
example = [ "secret[,opt=opt …]" ];
description = "--secret";
property = "Secret";
};

securityLabelDisable = quadletUtils.mkOption {
type = types.nullOr types.bool;
default = null;
Expand Down

0 comments on commit 7d5b65b

Please sign in to comment.