This fixes view/type individual entries crash

This commit is contained in:
Emmet 2023-06-10 12:12:59 -05:00
parent 39ef932ea3
commit facffb804e

View file

@ -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 # Home Manager needs a bit of information about you and the paths it should
@ -6,6 +6,21 @@
home.username = myName; home.username = myName;
home.homeDirectory = myHomeDir; 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; programs.home-manager.enable = true;
imports = [ imports = [