systemd: 229 -> 230

See https://github.com/systemd/systemd/blob/v230/NEWS for details.

The main incompatible change is that processes are now killed by
default when you exit a session. Thus, for example, using nohup in an
SSH session no longer works. You have to use "loginctl enable-linger"
and "systemd-run --user" to create a process that survives logout.

+3 -3
+3 -3
pkgs/os-specific/linux/systemd/default.nix
··· 10 assert stdenv.isLinux; 11 12 stdenv.mkDerivation rec { 13 - version = "229"; 14 name = "systemd-${version}"; 15 16 src = fetchFromGitHub { 17 owner = "NixOS"; 18 repo = "systemd"; 19 - rev = "4936f6e6c05162516a685ebd227b55816cf2b670"; 20 - sha256 = "1q0pyrljmq73qcan9rfqsiw66l1g159m5in5qgb8zwlwhl928670"; 21 }; 22 23 patches = [ ./hwdb-location.diff ];
··· 10 assert stdenv.isLinux; 11 12 stdenv.mkDerivation rec { 13 + version = "230"; 14 name = "systemd-${version}"; 15 16 src = fetchFromGitHub { 17 owner = "NixOS"; 18 repo = "systemd"; 19 + rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f"; 20 + sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y"; 21 }; 22 23 patches = [ ./hwdb-location.diff ];