diff options
author | Alan Pearce | 2024-05-05 21:28:40 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-05 21:28:40 +0200 |
commit | 1fdd1f839782339f39a16ba3100dec129cd40a0c (patch) | |
tree | 18aab30035c89ed743a9ef6159f6f75acb2b1700 | |
parent | 0d653242b21abd1678df35e2ba6c30cc23733eb1 (diff) | |
download | searchix-1fdd1f839782339f39a16ba3100dec129cd40a0c.tar.lz searchix-1fdd1f839782339f39a16ba3100dec129cd40a0c.tar.zst searchix-1fdd1f839782339f39a16ba3100dec129cd40a0c.zip |
fix: use options exposed via user's <nixpkgs> channel instead of ours
-rw-r--r-- | default.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/default.nix b/default.nix index 4face77..e10fc4f 100644 --- a/default.nix +++ b/default.nix @@ -15,9 +15,7 @@ in inherit (sources.simple-css) url sha256; }; - nixos-options = import (./. + "/importers/nixos-options.nix") { - inherit pkgs; - }; + nixos-options = import (./. + "/importers/nixos-options.nix") { }; searchix = pkgs.buildGoApplication { pname = "searchix"; |