mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
24 lines
477 B
Nix
24 lines
477 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
|
|
];
|
|
}
|