
It seems nix is much more permissive in applying patches than git am. These patches were regenerated by running `git am path/to/nixpkgs/pkgs/os-specific/linux/systemd/*.patch`, and manually running `patch -p1 < path/to/nixpkgs/pkgs/os-specific/linux/systemd/*N.patch` where necessary.
27 lines
764 B
Diff
27 lines
764 B
Diff
From 858fbf641ff5cd207282f3ad9d7458b2be2dcdb8 Mon Sep 17 00:00:00 2001
|
|
From: Nikolay Amiantov <ab@fmap.me>
|
|
Date: Thu, 25 Jul 2019 20:46:58 +0300
|
|
Subject: [PATCH 16/18] systemd-sleep: execute scripts in
|
|
/etc/systemd/system-sleep
|
|
|
|
This is needed for NixOS to use such scripts as systemd directory is immutable.
|
|
---
|
|
src/sleep/sleep.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/sleep/sleep.c b/src/sleep/sleep.c
|
|
index fbfddc0262..d2530b9421 100644
|
|
--- a/src/sleep/sleep.c
|
|
+++ b/src/sleep/sleep.c
|
|
@@ -178,6 +178,7 @@ static int execute(char **modes, char **states) {
|
|
};
|
|
static const char* const dirs[] = {
|
|
SYSTEM_SLEEP_PATH,
|
|
+ "/etc/systemd/system-sleep",
|
|
NULL
|
|
};
|
|
|
|
--
|
|
2.26.2
|
|
|