mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
1ab3cec3a1
Following some upstream changes [1], it's now possible to use a simplified package type for the option. [1]: https://github.com/NixOS/nixpkgs/pull/133542
12 lines
200 B
Nix
12 lines
200 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
test.stubs.rbw = { };
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
pinentry-gnome3 =
|
|
config.lib.test.mkStubPackage { outPath = "@pinentry-gnome3@"; };
|
|
})
|
|
];
|
|
}
|