diff options
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/options.nix b/options.nix index 4da0f341..5bea3386 100644 --- a/options.nix +++ b/options.nix @@ -2,6 +2,9 @@ let inherit (lib) types mkOption mkEnableOption; + fortify = pkgs.pkgsStatic.callPackage ./package.nix { + inherit (pkgs) bubblewrap xdg-dbus-proxy glibc; + }; in { @@ -11,10 +14,16 @@ in package = mkOption { type = types.package; - default = pkgs.callPackage ./package.nix { }; + default = fortify; description = "The fortify package to use."; }; + fsuPackage = mkOption { + type = types.package; + default = pkgs.callPackage ./cmd/fsu/package.nix { inherit fortify; }; + description = "The fsu package to use."; + }; + users = mkOption { type = let |
