Make jailed-agy enabled by default

Unfortunately most hosts need it.
This commit is contained in:
2026-07-06 17:08:24 +00:00
parent 51f1b9ea7d
commit eabc84c914
+5 -1
View File
@@ -46,7 +46,11 @@ let
in in
{ {
options.programs.jailed-agy = { options.programs.jailed-agy = {
enable = lib.mkEnableOption "jailed-agy wrapper"; enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to enable the jailed-agy wrapper.";
};
extraPackages = lib.mkOption { extraPackages = lib.mkOption {
type = lib.types.listOf lib.types.package; type = lib.types.listOf lib.types.package;