diff options
author | Vincent Ambo <mail@tazj.in> | 2023-10-04T20·39+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-10-08T20·56+0000 |
commit | e778a33710c01d1320e2cd36c0ebcf668ea0fcc4 (patch) | |
tree | e95318f2b65c71d0e92e95bfe43cb88daa8bfccc /users/wpcarro | |
parent | f4787355a4a7e172c4ba77d160d7a21a5b8032e6 (diff) |
chore(3p/sources): bump channels & overlays (2023-10-04) r/6734
nixpkgs changed something in how it deals with configuration of the package set itself when that is externally instantiated (like in depot) It seems like we can work around this mostly by just ... deleting some code, as all instances of this were for allowing unfree code, which we've already set on the top-level anyways. * //users/sterni: fix nixpkgs config assertion to point at pkgs.config * //users/wpcarro: disable locate service, which is broken in nixpkgs Change-Id: Iacf6f1c8fd5b5289e7265e155d74f8269a858ceb Reviewed-on: https://cl.tvl.fyi/c/depot/+/9541 Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/wpcarro')
-rw-r--r-- | users/wpcarro/common.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/wpcarro/common.nix b/users/wpcarro/common.nix index 72ae374bbdaa..582b63fc4c43 100644 --- a/users/wpcarro/common.nix +++ b/users/wpcarro/common.nix @@ -29,7 +29,8 @@ in # Remodel the system clipboard as a list instead of a point. clipmenu.enable = true; - locate.enable = true; + # TODO(wpcarro): broken in nixpkgs as of 2023-10-04 + locate.enable = false; depot.automatic-gc = { enable = true; |