This commit is contained in:
Simon Gardling 2025-02-06 11:35:35 -05:00
parent af09e1e1f9
commit 7bb0b8a312
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
4 changed files with 25 additions and 26 deletions

6
etcnixos/flake.lock generated
View File

@ -294,11 +294,11 @@
},
"nixos-hardware": {
"locked": {
"lastModified": 1738815599,
"narHash": "sha256-gpDGrlNANp8+Ag7oAHiXtUIJ1kWHqTN/6G686PpkNl0=",
"lastModified": 1738816619,
"narHash": "sha256-5yRlg48XmpcX5b5HesdGMOte+YuCy9rzQkJz+imcu6I=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "d1f201fc627098d764ed00f736864ce673f5975e",
"rev": "2eccff41bab80839b1d25b303b53d339fbb07087",
"type": "github"
},
"original": {

View File

@ -54,11 +54,11 @@
]
},
"locked": {
"lastModified": 1738789832,
"narHash": "sha256-HdlMPfObPu5y7oDfH/w3vvlU3UTQ/bQjSULChZARm5M=",
"lastModified": 1738841109,
"narHash": "sha256-sEgE3nifaRU5gfAx33ds0tx/j+qM0/5/bHopv/w6c0c=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "30ea6fed4e4b41693cebc2263373dd810de4de49",
"rev": "f99c704fe3a4cf8d72b2d568ec80bc38be1a9407",
"type": "github"
},
"original": {
@ -79,11 +79,11 @@
"xwayland-satellite-unstable": "xwayland-satellite-unstable"
},
"locked": {
"lastModified": 1738770770,
"narHash": "sha256-nfapp7C4BbdvHTRA1HSRVYjD5Fk2FCKoyxQLzcL5X50=",
"lastModified": 1738835520,
"narHash": "sha256-qvaWZ3PDJ0MC7t0wD8MdoGdVnMu0ps/ZWCXGepCFo5s=",
"owner": "sodiboo",
"repo": "niri-flake",
"rev": "83abbde7c8164ee4b42a8647e4e61015c3f45816",
"rev": "4e72debdb5675b41278ddd492168b6c9c9ed09a0",
"type": "github"
},
"original": {
@ -112,11 +112,11 @@
"niri-unstable": {
"flake": false,
"locked": {
"lastModified": 1738768006,
"narHash": "sha256-56jDYr/vqX4fobMJO2nWLjih03i6UV5bKtxI0nR4ZZA=",
"lastModified": 1738827003,
"narHash": "sha256-s3bBfzPRRWybVSzRYStIwQxSOH5/9kR0Kfqi4IsvG7E=",
"owner": "YaLTeR",
"repo": "niri",
"rev": "690d6355057ebeba03cbd8ce4905145b834c72f8",
"rev": "b31c0359ebce114ae2f9b4e5df3dc37a93f5115e",
"type": "github"
},
"original": {

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

View File

@ -60,5 +60,4 @@
in
import ./progs/borg.nix { inherit homeDirectory borgPasswordFile; };
};
}