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": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1738815599, "lastModified": 1738816619,
"narHash": "sha256-gpDGrlNANp8+Ag7oAHiXtUIJ1kWHqTN/6G686PpkNl0=", "narHash": "sha256-5yRlg48XmpcX5b5HesdGMOte+YuCy9rzQkJz+imcu6I=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "d1f201fc627098d764ed00f736864ce673f5975e", "rev": "2eccff41bab80839b1d25b303b53d339fbb07087",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

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

View File

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

View File

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