From 2bee72609d0b8962515c62f2cf93ee865a533fb8 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Wed, 6 Aug 2025 13:42:08 -0400 Subject: [PATCH] rm command not found --- flake.lock | 49 ++++------------------------ flake.nix | 4 --- modules/common/command-not-found.nix | 7 ---- 3 files changed, 6 insertions(+), 54 deletions(-) delete mode 100644 modules/common/command-not-found.nix diff --git a/flake.lock b/flake.lock index 341c257..8980b05 100644 --- a/flake.lock +++ b/flake.lock @@ -766,11 +766,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1754420989, - "narHash": "sha256-3e4wHzNwTMg7GaeLH9A091DMaO9AfFxUjpfqbddCUeo=", + "lastModified": 1754487366, + "narHash": "sha256-pHYj8gUBapuUzKV/kN/tR3Zvqc7o6gdFB9XKXIp1SQ8=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "7f38f25a44023a21a504bd3fd9d4f41c4a39f55c", + "rev": "af66ad14b28a127c5c0f3bbb298218fc63528a18", "type": "github" }, "original": { @@ -1231,11 +1231,11 @@ ] }, "locked": { - "lastModified": 1754441365, - "narHash": "sha256-yYYxwqUydEX/Ta+0HNLRaxW8GQLDRXGdC6xE84ZjRtI=", + "lastModified": 1754457347, + "narHash": "sha256-QN9yZ1L5EmR16NNM+hNNzMjARk+FPjUeSE/ds4Kms0E=", "owner": "nix-community", "repo": "home-manager", - "rev": "f0d81a415d7a8fbf57b518aec5cf7dca20576389", + "rev": "ad5d2b4aa770fdc74c80fd682fee0b00a8ad7991", "type": "github" }, "original": { @@ -2605,27 +2605,6 @@ "type": "github" } }, - "programsdb": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ], - "utils": "utils" - }, - "locked": { - "lastModified": 1754416435, - "narHash": "sha256-de3oHjNMXEO4WG8Gg9rST4BekwU/pnrHQ0OyVN4UE9Y=", - "owner": "wamserma", - "repo": "flake-programs-sqlite", - "rev": "2ff84f43497dc1c7b735cb107ca05b9def3b73bf", - "type": "github" - }, - "original": { - "owner": "wamserma", - "repo": "flake-programs-sqlite", - "type": "github" - } - }, "rocksdb": { "flake": false, "locked": { @@ -2659,7 +2638,6 @@ "nix-matrix-appservices": "nix-matrix-appservices", "nixpkgs": "nixpkgs_2", "ooye": "ooye", - "programsdb": "programsdb", "run0-sudo-shim": "run0-sudo-shim", "sdm845": "sdm845", "stylix": "stylix", @@ -3117,21 +3095,6 @@ "type": "github" } }, - "utils": { - "locked": { - "lastModified": 1678901627, - "narHash": "sha256-U02riOqrKKzwjsxc/400XnElV+UtPUQWpANPlyazjH0=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "93a2b84fc4b70d9e089d029deacc3583435c2ed6", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "weird-deployer": { "locked": { "lastModified": 1728549622, diff --git a/flake.nix b/flake.nix index 079ae52..8939dcf 100755 --- a/flake.nix +++ b/flake.nix @@ -52,10 +52,6 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; - programsdb = { - url = "github:wamserma/flake-programs-sqlite"; - inputs.nixpkgs.follows = "nixpkgs"; - }; firefox-gnome-theme = { url = "github:rafaelmardojai/firefox-gnome-theme"; flake = false; diff --git a/modules/common/command-not-found.nix b/modules/common/command-not-found.nix deleted file mode 100644 index 2d3edb7..0000000 --- a/modules/common/command-not-found.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ - inputs, - pkgs, - ... -}: { - programs.command-not-found.dbPath = inputs.programsdb.packages.${pkgs.system}.programs-sqlite; -}