mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 15:11:03 +01:00
Add two new options to customize how extension permissions are checked: - `extensions.exhaustivePermissions` Ensures that the permissions requested by all extensions managed by home-manager are authorized - `extensions.exactPermissions` When enabled, the user must authorize only the permissions that the extensions requests, not more nor less.
31 lines
1.4 KiB
Nix
31 lines
1.4 KiB
Nix
name:
|
|
builtins.mapAttrs
|
|
(
|
|
test: module:
|
|
import module [
|
|
"programs"
|
|
name
|
|
]
|
|
)
|
|
{
|
|
"${name}-deprecated-native-messenger" = ./deprecated-native-messenger.nix;
|
|
"${name}-null-package" = ./null-package.nix;
|
|
"${name}-final-package" = ./final-package.nix;
|
|
"${name}-policies" = ./policies.nix;
|
|
"${name}-profiles-bookmarks" = ./profiles/bookmarks;
|
|
"${name}-profiles-bookmarks-attrset" = ./profiles/bookmarks/attrset.nix;
|
|
"${name}-profiles-containers" = ./profiles/containers;
|
|
"${name}-profiles-containers-duplicate-ids" = ./profiles/containers/duplicate-ids.nix;
|
|
"${name}-profiles-containers-id-out-of-range" = ./profiles/containers/id-out-of-range.nix;
|
|
"${name}-profiles-duplicate-ids" = ./profiles/duplicate-ids.nix;
|
|
"${name}-profiles-extensions" = ./profiles/extensions;
|
|
"${name}-profiles-extensions-assertions" = ./profiles/extensions/assertions.nix;
|
|
"${name}-profiles-extensions-exhaustive" = ./profiles/extensions/exhaustive.nix;
|
|
"${name}-profiles-extensions-exact" = ./profiles/extensions/exact.nix;
|
|
"${name}-profiles-overwrite" = ./profiles/overwrite;
|
|
"${name}-profiles-search" = ./profiles/search;
|
|
"${name}-profiles-settings" = ./profiles/settings;
|
|
"${name}-profiles-userchrome" = ./profiles/userchrome;
|
|
"${name}-state-version-19_09" = ./state-version-19_09.nix;
|
|
"${name}-profiles-shared-path" = ./profiles/shared-path.nix;
|
|
}
|