* systemd: add `packages` option The `systemd.user.packages` option is the Home Manager equivalent of NixOS’s `systemd.packages` option and provides a way to specify packages providing systemd user units. This option is similar to `dbus.packages`. * systemd: only create the parent directory if there are packages to symlink
10 lines
370 B
Nix
10 lines
370 B
Nix
{
|
|
systemd-services = ./services.nix;
|
|
systemd-packages = ./packages.nix;
|
|
systemd-services-disabled-for-root = ./services-disabled-for-root.nix;
|
|
systemd-session-variables = ./session-variables.nix;
|
|
systemd-user-config = ./user-config.nix;
|
|
systemd-empty-user-config = ./empty-user-config.nix;
|
|
systemd-slices = ./slices.nix;
|
|
systemd-timers = ./timers.nix;
|
|
}
|