aboutsummaryrefslogtreecommitdiff
path: root/nixos/profiles/common/nixpkgs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2026-09-24 08:13:41 +0200
committerMartin Fischer <martin@push-f.com>2026-09-24 08:14:17 +0200
commit949103f98f45514f8876c6acbdc82a45f6e0c668 (patch)
treeb0b30d1b0151ae4dac0c977c32fd45794a237937 /nixos/profiles/common/nixpkgs
parent2c194daeece1469d5977e9d01b5e894340fa9906 (diff)
refactor: stop patching sway
Diffstat (limited to 'nixos/profiles/common/nixpkgs')
-rw-r--r--nixos/profiles/common/nixpkgs/overlays.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/nixos/profiles/common/nixpkgs/overlays.nix b/nixos/profiles/common/nixpkgs/overlays.nix
index 7bad946..ee8b435 100644
--- a/nixos/profiles/common/nixpkgs/overlays.nix
+++ b/nixos/profiles/common/nixpkgs/overlays.nix
@@ -1,15 +1,4 @@
# https://nixos.org/manual/nixpkgs/stable/#sec-overlays-definition
{ pkgs, ... }:
[
- (final: prev: {
- sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: {
- patches = old.patches ++ [
- # https://github.com/swaywm/sway/pull/8761
- (pkgs.fetchpatch {
- url = "https://github.com/swaywm/sway/commit/af7c6ec7b1daeeec67dd17e27fb75f1f1c347327.patch";
- hash = "sha256-DxN/3IdswZ6q/ksBVr+wgwGe7ScJeg8gFHYQdQAueww=";
- })
- ];
- });
- })
]