blob: 2edbccc58b1690fee31873255aa2bc5ab8739a86 (
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;
# })
# ];
}
|