mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-20 09:14:34 +05:30
This fixes view/type individual entries crash
This commit is contained in:
parent
39ef932ea3
commit
facffb804e
|
@ -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 = [
|
||||
|
|
Loading…
Reference in a new issue