mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
Native messaging hosts module assumed all hosts are packages, and we were passing null before. The patch also adds a test case for a null firefox package to avoid regressions in the future for this common (on Darwin at least) scenario. Note: Thunderbird doesn't need a similar change because it doesn't allow a null package. Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
19 lines
940 B
Nix
19 lines
940 B
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-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-overwrite" = ./profiles/overwrite;
|
|
"${name}-profiles-search" = ./profiles/search;
|
|
"${name}-profiles-settings" = ./profiles/settings;
|
|
"${name}-state-version-19_09" = ./state-version-19_09.nix;
|
|
"${name}-profiles-shared-path" = ./profiles/shared-path.nix;
|
|
}
|