diff options
author | Martin Fischer <martin@push-f.com> | 2025-06-15 09:49:15 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-06-18 21:15:31 +0200 |
commit | 340416cc38bb68dc97ae3577f717e8505c18114f (patch) | |
tree | 922e98cc4d09bc7b5ec199699dee81560480078a /nixos/profiles/common | |
parent | 7d65ee9b6b6046b73b9e7736b8ce7596724449e9 (diff) |
feat(workstation): add shortcut to edit notes
Diffstat (limited to 'nixos/profiles/common')
-rw-r--r-- | nixos/profiles/common/nixpkgs/overlays.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nixos/profiles/common/nixpkgs/overlays.nix b/nixos/profiles/common/nixpkgs/overlays.nix index 7bad946..63e9de9 100644 --- a/nixos/profiles/common/nixpkgs/overlays.nix +++ b/nixos/profiles/common/nixpkgs/overlays.nix @@ -1,6 +1,17 @@ # https://nixos.org/manual/nixpkgs/stable/#sec-overlays-definition { pkgs, ... }: [ + # features + (final: prev: { + skim = prev.skim.overrideAttrs (old: { + patches = old.patches ++ [ + # https://github.com/skim-rs/skim/issues/803 + ../../workstation/patches/skim-blank.patch + ]; + }); + }) + + # bug fixes (final: prev: { sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: { patches = old.patches ++ [ |