mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Condensed home.nix into many more modules!
This commit is contained in:
parent
3fd5341fbe
commit
4a44c06a43
14 changed files with 258 additions and 155 deletions
23
user/app/keepass/keepass.nix
Normal file
23
user/app/keepass/keepass.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue