mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Due to the defaults in `systemd.user.settings`, the default value when
there are no settings explicitly set is `{ Manager = { }; }`. This
means an empty file is created even when `systemd.user.settings` is
never used in home-manager configuration. Since user’s `user.conf` is
preferred to the global `/etc/systemd/user.conf`, this can cause any
values set in the latter to be discarded.
9 lines
333 B
Nix
9 lines
333 B
Nix
{
|
|
systemd-services = ./services.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;
|
|
}
|