blob: fc85510a904f50aee739f115e2c961fcff45c62c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs, ... }:
let
overlays = import ./overlays/default.nix { };
in
{
nixpkgs.overlays = with overlays; [
# pass-with-dmenu
# Home manager issue {https://discourse.nixos.org/t/error-when-upgrading-nixos-related-to-fcitx-engines/26940}
(self: super: {
fcitx-engines = super.fcitx5;
})
];
}
|