Add exclude_packages to allow modifying default install

This commit is contained in:
Henry Sipp
2025-07-24 20:42:02 -05:00
parent b83efbcf18
commit e22477bb58
4 changed files with 35 additions and 28 deletions
+5
View File
@@ -63,5 +63,10 @@ lib: {
"SUPER, slash, exec, $passwordManager"
];
};
exclude_packages = lib.mkOption {
type = lib.types.listOf lib.types.package;
default = [];
description = "Packages to exclude from the default system packages";
};
};
}