mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 02:03:01 +00:00
Merge pull request #264879 from nikstur/systemd-sysusers-staging
systemd: enable sysusers by default
This commit is contained in:
commit
6e4099ca09
@ -124,7 +124,7 @@
|
||||
, withRemote ? !stdenv.hostPlatform.isMusl
|
||||
, withResolved ? true
|
||||
, withShellCompletions ? true
|
||||
, withSysusers ? false # conflicts with the NixOS user management
|
||||
, withSysusers ? true
|
||||
, withSysupdate ? true
|
||||
, withTimedated ? true
|
||||
, withTimesyncd ? true
|
||||
@ -729,6 +729,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
rm -rf $out/share/doc
|
||||
'' + lib.optionalString (withKmod && !buildLibsOnly) ''
|
||||
mv $out/lib/modules-load.d $out/example
|
||||
'' + lib.optionalString withSysusers ''
|
||||
mv $out/lib/sysusers.d $out/example
|
||||
'';
|
||||
|
||||
# Avoid *.EFI binary stripping. At least on aarch64-linux strip
|
||||
|
@ -28782,6 +28782,7 @@ with pkgs;
|
||||
withResolved = false;
|
||||
withShellCompletions = false;
|
||||
withSysupdate = false;
|
||||
withSysusers = false;
|
||||
withTimedated = false;
|
||||
withTimesyncd = false;
|
||||
withTpm2Tss = false;
|
||||
|
Loading…
Reference in New Issue
Block a user