mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
24 lines
463 B
Nix
24 lines
463 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
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=";
|
||
|
};
|
||
|
});
|
||
|
}
|
||
|
)
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
keepassxc
|
||
|
keepmenu
|
||
|
];
|
||
|
}
|