From 44052055d9be2766be3b4761e48f47ee69d954b5 Mon Sep 17 00:00:00 2001 From: Andrew Kvalheim Date: Wed, 10 Aug 2022 18:44:23 -0700 Subject: [PATCH] Move patches into packages directory --- common/nixos.nix | 2 +- .../resources}/gnome-shell_screenshot-location.patch | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {patches => packages/resources}/gnome-shell_screenshot-location.patch (100%) diff --git a/common/nixos.nix b/common/nixos.nix index 1f45d32..e6afdf6 100644 --- a/common/nixos.nix +++ b/common/nixos.nix @@ -26,7 +26,7 @@ in (_: pkgs: { gnome = pkgs.gnome.overrideScope' (_: gnome: { gnome-shell = gnome.gnome-shell.overrideAttrs (gnome-shell: { - patches = gnome-shell.patches ++ [ ../patches/gnome-shell_screenshot-location.patch ]; + patches = gnome-shell.patches ++ [ ../packages/resources/gnome-shell_screenshot-location.patch ]; }); }); }) diff --git a/patches/gnome-shell_screenshot-location.patch b/packages/resources/gnome-shell_screenshot-location.patch similarity index 100% rename from patches/gnome-shell_screenshot-location.patch rename to packages/resources/gnome-shell_screenshot-location.patch