nix-files/pkgs/systemd/default.nix

10 lines
201 B
Nix
Raw Normal View History

{ pkgs }:
(pkgs.systemd.overrideAttrs (upstream: {
patches = (upstream.patches or []) ++ [
# give the HDD time to spin down before abruptly cutting power
./01-spindown-drive.patch
];
}))