1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

systemd: enable timedated, hostnamed, localed.

This commit is contained in:
Gabriel Ebner 2015-12-06 14:30:18 +01:00 committed by Eelco Dolstra
parent 4212d8facb
commit f4c01fc004
2 changed files with 9 additions and 3 deletions

View file

@ -148,6 +148,12 @@ let
# Misc.
"systemd-sysctl.service"
"dbus-org.freedesktop.timedate1.service"
"dbus-org.freedesktop.locale1.service"
"dbus-org.freedesktop.hostname1.service"
"systemd-timedated.service"
"systemd-localed.service"
"systemd-hostnamed.service"
]
++ cfg.additionalUpstreamSystemUnits;

View file

@ -48,13 +48,13 @@ stdenv.mkDerivation rec {
"--enable-compat-libs" # get rid of this eventually
"--disable-tests"
"--disable-hostnamed"
"--enable-hostnamed"
"--enable-networkd"
"--disable-sysusers"
"--disable-timedated"
"--enable-timedated"
"--enable-timesyncd"
"--disable-firstboot"
"--disable-localed"
"--enable-localed"
"--enable-resolved"
"--disable-split-usr"
"--disable-libcurl"