blob: dbeb552d96fca25045788acf3692936686ac2737 (
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;
})
];
}
|