configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: beets overlay

+19 -1
+5 -1
flake.nix
··· 22 22 agenix, 23 23 tangled, 24 24 ... 25 - }: { 25 + }: let 26 + overlays = [ 27 + (import ./overlays/beetsFix.nix) 28 + ]; 29 + in { 26 30 darwinConfigurations = { 27 31 d-macbook = nix-darwin.lib.darwinSystem { 28 32 modules = [
+14
overlays/beetsfix.nix
··· 1 + # https://github.com/NixOS/nixpkgs/issues/493540#issuecomment-3981037064 2 + self: super: { 3 + pyrate-limiter = super.pyrate-limiter_2; 4 + beets = 5 + (super.beets.override { 6 + sphinxHook = null; 7 + sphinx-design = null; 8 + sphinx-copybutton = null; 9 + sphinx-toolbox = null; 10 + pydata-sphinx-theme = null; 11 + }).overrideAttrs (prevAttrs: { 12 + outputs = ["out"]; 13 + }); 14 + }