summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.lock18
-rw-r--r--overlays/nvidia-kernel-5.7.nix19
-rw-r--r--overlays/zfs.nix1
3 files changed, 10 insertions, 28 deletions
diff --git a/flake.lock b/flake.lock
index 48d48e92..7c3fbf68 100644
--- a/flake.lock
+++ b/flake.lock
@@ -7,11 +7,11 @@
7 ] 7 ]
8 }, 8 },
9 "locked": { 9 "locked": {
10 "lastModified": 1637010045, 10 "lastModified": 1639246679,
11 "narHash": "sha256-EzA+Iu2c8N1i3K8jouZSuyMOOeR1glFZSW9ZgqmPH54=", 11 "narHash": "sha256-Jom+l4fklkb3/wxITqz5FrOd4LeL47Eg55xmxo1fY2g=",
12 "owner": "nix-community", 12 "owner": "nix-community",
13 "repo": "home-manager", 13 "repo": "home-manager",
14 "rev": "a7c5b00d44f65efd1e8ace2c02243f179e72283a", 14 "rev": "0ebed30a10617bd48dd1bd0ce8697aab1b42d933",
15 "type": "github" 15 "type": "github"
16 }, 16 },
17 "original": { 17 "original": {
@@ -23,11 +23,11 @@
23 }, 23 },
24 "nixpkgs": { 24 "nixpkgs": {
25 "locked": { 25 "locked": {
26 "lastModified": 1637072800, 26 "lastModified": 1639309600,
27 "narHash": "sha256-Q7MDJG+DG/gXnZ1dBPuQBNrGUy1R5GD4xnIbKOu8/Mw=", 27 "narHash": "sha256-t0Id5COBbyFTNbLlb9ssavozLWfVozswR096fHQFN08=",
28 "owner": "NixOS", 28 "owner": "NixOS",
29 "repo": "nixpkgs", 29 "repo": "nixpkgs",
30 "rev": "57c90b8956cd00b35c56b92fcb857116631d5d5d", 30 "rev": "552d420f3ab6f036aca83ef657edfeac43dfe092",
31 "type": "github" 31 "type": "github"
32 }, 32 },
33 "original": { 33 "original": {
@@ -51,11 +51,11 @@
51 ] 51 ]
52 }, 52 },
53 "locked": { 53 "locked": {
54 "lastModified": 1637050424, 54 "lastModified": 1638821683,
55 "narHash": "sha256-8IaY0/Y5g3jJiQzPN0PflKFcFEE1C29DZZ0dF1NIJ6s=", 55 "narHash": "sha256-oyqALhGijy2ZQxFSACrcC+Z8MzYLiomKCr9FQXVZ47U=",
56 "owner": "Mic92", 56 "owner": "Mic92",
57 "repo": "sops-nix", 57 "repo": "sops-nix",
58 "rev": "3c53d012ac77d4bd8428f9c847709e287c897ad9", 58 "rev": "afe00100b16648c1d79e62926caacac561df93a5",
59 "type": "github" 59 "type": "github"
60 }, 60 },
61 "original": { 61 "original": {
diff --git a/overlays/nvidia-kernel-5.7.nix b/overlays/nvidia-kernel-5.7.nix
deleted file mode 100644
index 92d3abb3..00000000
--- a/overlays/nvidia-kernel-5.7.nix
+++ /dev/null
@@ -1,19 +0,0 @@
1final: prev: {
2 linuxPackages_latest = prev.linuxPackages_latest.extend (self: super: {
3 nvidiaPackages = super.nvidiaPackages // {
4 stable = super.nvidiaPackages.stable.overrideAttrs (attrs: {
5 patches = [
6 (prev.fetchpatch {
7 name = "nvidia-kernel-5.7.patch";
8 url = "https://gitlab.com/snippets/1965550/raw";
9 sha256 = "03iwxhkajk65phc0h5j7v4gr4fjj6mhxdn04pa57am5qax8i2g9w";
10 })
11 ];
12
13 passthru = {
14 inherit (super.nvidiaPackages.stable) settings persistenced persistencedVersion settingsVersion;
15 };
16 });
17 };
18 });
19}
diff --git a/overlays/zfs.nix b/overlays/zfs.nix
index 58a3e579..a76becff 100644
--- a/overlays/zfs.nix
+++ b/overlays/zfs.nix
@@ -7,4 +7,5 @@ final: prev: {
7 }); 7 });
8 }); 8 });
9 }); 9 });
10 linuxPackages_latest = final.linuxPackages_5_15;
10} 11}