aboutsummaryrefslogtreecommitdiff
path: root/overlays-home.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2023-06-29 14:45:20 +0530
committerAkshay Nair <phenax5@gmail.com>2023-06-29 14:45:20 +0530
commitf8f66295d90c6db724da519cc1be1ef1233ecdf5 (patch)
tree42b176ac7303f95c897671018b555c38765737f9 /overlays-home.nix
parentedc4ef0106f7d4a37d367e81ae9e6470dbdc7087 (diff)
downloadnixos-config-f8f66295d90c6db724da519cc1be1ef1233ecdf5.tar.gz
nixos-config-f8f66295d90c6db724da519cc1be1ef1233ecdf5.zip
config sync:
Diffstat (limited to 'overlays-home.nix')
-rw-r--r--overlays-home.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/overlays-home.nix b/overlays-home.nix
index 00558d3..dbeb552 100644
--- a/overlays-home.nix
+++ b/overlays-home.nix
@@ -1,8 +1,14 @@
{ pkgs, ... }:
let
- overlays = import ./overlays/default.nix {};
-in {
+ 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;
+ })
];
}