diff options
| -rw-r--r-- | flake.lock | 86 | ||||
| -rw-r--r-- | flake.nix | 5 | ||||
| -rw-r--r-- | home/ebisu/fortune/nix/default.nix | 1 |
3 files changed, 84 insertions, 8 deletions
@@ -162,6 +162,20 @@ } }, "flake-compat_2": { + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "revCount": 57, + "type": "tarball", + "url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz" + }, + "original": { + "type": "tarball", + "url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz" + } + }, + "flake-compat_3": { "flake": false, "locked": { "lastModified": 1673956053, @@ -177,7 +191,7 @@ "type": "github" } }, - "flake-compat_3": { + "flake-compat_4": { "flake": false, "locked": { "lastModified": 1696426674, @@ -300,6 +314,24 @@ } }, "flake-utils_2": { + "inputs": { + "systems": "systems_2" + }, + "locked": { + "lastModified": 1710146030, + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_3": { "locked": { "lastModified": 1667395993, "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", @@ -314,9 +346,9 @@ "type": "github" } }, - "flake-utils_3": { + "flake-utils_4": { "inputs": { - "systems": "systems_2" + "systems": "systems_3" }, "locked": { "lastModified": 1685518550, @@ -649,7 +681,7 @@ }, "nix": { "inputs": { - "flake-compat": "flake-compat_2", + "flake-compat": "flake-compat_3", "flake-parts": [ "omnix", "flake-parts" @@ -816,6 +848,28 @@ "type": "github" } }, + "nix-search": { + "inputs": { + "flake-compat": "flake-compat_2", + "flake-utils": "flake-utils_2", + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1724483848, + "narHash": "sha256-h9yYOjL9i/m0r5NbqMcLMFNnwSKsIgfUr5qk+47pOtc=", + "owner": "diamondburned", + "repo": "nix-search", + "rev": "e616ac1c82a616fa6e6d8c94839c5052eb8c808d", + "type": "github" + }, + "original": { + "owner": "diamondburned", + "repo": "nix-search", + "type": "github" + } + }, "nix-systems-aarch64-darwin": { "locked": { "lastModified": 1680978170, @@ -1081,7 +1135,7 @@ "omnix", "nix" ], - "flake-utils": "flake-utils_2", + "flake-utils": "flake-utils_3", "gitignore": [ "omnix", "nix" @@ -1113,7 +1167,7 @@ }, "pre-commit-hooks_2": { "inputs": { - "flake-compat": "flake-compat_3", + "flake-compat": "flake-compat_4", "gitignore": "gitignore", "nixpkgs": [ "nixpkgs" @@ -1183,6 +1237,7 @@ "nix-alien": "nix-alien", "nix-gaming": "nix-gaming", "nix-index-database": "nix-index-database_2", + "nix-search": "nix-search", "nix-thorium": "nix-thorium", "nixpkgs": "nixpkgs_2", "nur": "nur", @@ -1191,7 +1246,7 @@ "pre-commit-hooks": "pre-commit-hooks_2", "pywal-nix": "pywal-nix", "spicetify-nix": "spicetify-nix", - "systems": "systems_3", + "systems": "systems_4", "tailray": "tailray" } }, @@ -1254,7 +1309,7 @@ }, "spicetify-nix": { "inputs": { - "flake-utils": "flake-utils_3", + "flake-utils": "flake-utils_4", "nixpkgs": [ "nixpkgs" ] @@ -1318,6 +1373,21 @@ "type": "github" } }, + "systems_4": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "tailray": { "inputs": { "nixpkgs": [ @@ -131,5 +131,10 @@ inputs.nixpkgs.follows = "nixpkgs"; inputs.systems.follows = "systems"; }; + + nix-search = { + url = "github:diamondburned/nix-search"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; } diff --git a/home/ebisu/fortune/nix/default.nix b/home/ebisu/fortune/nix/default.nix index 3e4c7b7..c3a0fa1 100644 --- a/home/ebisu/fortune/nix/default.nix +++ b/home/ebisu/fortune/nix/default.nix @@ -23,5 +23,6 @@ nvd cached-nix-shell omnix.packages.${pkgs.system}.default + nix-search.packages.${system}.default ]; } |