This commit is contained in:
2025-02-06 11:35:35 -05:00
parent af09e1e1f9
commit 7bb0b8a312
4 changed files with 25 additions and 26 deletions

View File

@@ -61,21 +61,21 @@
}
);
pkgs' = (import nixpkgs { }).applyPatches {
name = "gpt4all 3.9.0";
src = inputs.nixpkgs;
patches = [
(builtins.fetchurl {
url = "https://github.com/NixOS/nixpkgs/pull/372723.diff";
sha256 = "1zzrs058i9p89qy8r22n8i5wff5s0s6w56c7d37nvs6b0jwp5qhm";
})
];
};
pkgs = (import pkgs' { });
pkgs = (
import ((import nixpkgs { }).applyPatches {
name = "gpt4all 3.9.0";
src = inputs.nixpkgs;
patches = [
(builtins.fetchurl {
url = "https://github.com/NixOS/nixpkgs/pull/372723.diff";
sha256 = "1vq035iwmc8dhi4zfhgivm1vr14yjjv8fgp00dk5wh3j401p6s6k";
})
];
}) { }
);
in
{
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
homeConfigurations."${username}" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {
inherit