summary refs log tree commit diff
path: root/pkgs/os-specific/linux/systemd/default.nix
diff options
context:
space:
mode:
authorYuka <yuka@yuka.dev>2022-09-13 16:03:35 +0200
committerGitHub <noreply@github.com>2022-09-13 16:03:35 +0200
commit2444caed5af0e535220faf19929bc7b969cf35c1 (patch)
tree4b2980a362ee1152c339673dbbebab0b4230a5c1 /pkgs/os-specific/linux/systemd/default.nix
parent0b07cb1528ab1c42820b11d6b21f463f61857588 (diff)
downloadnixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.tar
nixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.tar.gz
nixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.tar.bz2
nixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.tar.lz
nixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.tar.xz
nixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.tar.zst
nixpkgs-2444caed5af0e535220faf19929bc7b969cf35c1.zip
systemd: set withTpm2Tss and withUserDb to true on musl (#191030)
When we initially applied the openembedded patchset to make systemd
build with musl, these options had to be disabled for it to work.
Now they seem to work fine, so re-enabling.
Diffstat (limited to 'pkgs/os-specific/linux/systemd/default.nix')
-rw-r--r--pkgs/os-specific/linux/systemd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index a14883ff5f2..2b80dead199 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -98,8 +98,8 @@
 , withShellCompletions ? true
 , withTimedated ? true
 , withTimesyncd ? true
-, withTpm2Tss ? !stdenv.hostPlatform.isMusl
-, withUserDb ? !stdenv.hostPlatform.isMusl
+, withTpm2Tss ? true
+, withUserDb ? true
 , withUtmp ? !stdenv.hostPlatform.isMusl
   # tests assume too much system access for them to be feasible for us right now
 , withTests ? false