systemd tmpfiles do not create subvol

This commit is contained in:
陈浩南 2023-06-28 10:08:29 +08:00
parent 43e0dcd33b
commit e6bcf5ac1c

View File

@ -158,8 +158,11 @@ inputs:
};
# services
systemd.services.nix-daemon
= { environment = { TMPDIR = "/var/cache/nix"; }; serviceConfig = { CacheDirectory = "nix"; }; };
systemd.services =
{
nix-daemon = { environment = { TMPDIR = "/var/cache/nix"; }; serviceConfig = { CacheDirectory = "nix"; }; };
systemd-tmpfiles-setup = { environment = { SYSTEMD_TMPFILES_FORCE_SUBVOL = "0"; }; };
};
services =
{
snapper.configs.impermanence =