Use zsh-histdb package.

This commit is contained in:
Tom Alexander
2024-12-23 15:44:53 -05:00
parent 5e424b35e4
commit 64d495afa5
3 changed files with 142 additions and 1 deletions

View File

@@ -38,6 +38,12 @@
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.4.1";
# Optional but recommended to limit the size of your system closure.
inputs.nixpkgs.follows = "nixpkgs";
};
zsh-histdb = {
url = "path:flakes/zsh-histdb";
# Optional but recommended to limit the size of your system closure.
inputs.nixpkgs.follows = "nixpkgs";
};
@@ -52,6 +58,7 @@
impermanence,
home-manager,
lanzaboote,
zsh-histdb,
...
}@inputs:
let
@@ -73,6 +80,7 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
{ nixpkgs.overlays = [ zsh-histdb.overlays.default ]; }
./configuration.nix
];
};