From facffb804e7d3878987011645044a332ae61eca8 Mon Sep 17 00:00:00 2001 From: Emmet Date: Sat, 10 Jun 2023 12:12:59 -0500 Subject: [PATCH] This fixes view/type individual entries crash --- user/home.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/user/home.nix b/user/home.nix index 01ae8d7..c36a497 100644 --- a/user/home.nix +++ b/user/home.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, myName, myEmail, myHomeDir, myDotfilesDir, myTheme, ... }: +{ config, lib, pkgs, python3Packages, myName, myEmail, myHomeDir, myDotfilesDir, myTheme, ... }: { # Home Manager needs a bit of information about you and the paths it should @@ -6,6 +6,21 @@ home.username = myName; home.homeDirectory = myHomeDir; + nixpkgs.overlays = [ + (self: super: + { + keepmenu = super.keepmenu.overrideAttrs (oldAttrs: rec { + pname = "keepmenu"; + version = "1.3.1"; + src = super.python3Packages.fetchPypi { + inherit pname version; + sha256 = "sha256-AGuJY7IirzIjcu/nY9CzeOqU1liwcRijYLi8hGN/pRg="; + }; + }); + } + ) + ]; + programs.home-manager.enable = true; imports = [