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 = [