nixos-demo/software/nix-daemon.nix

15 lines
209 B
Nix
Raw Normal View History

2025-07-12 00:28:21 +02:00
{ ... }:
{
systemd.services = {
nix-daemon = {
environment = {
TMPDIR = "/run/nix-daemon";
};
serviceConfig = {
RuntimeDirectory = "nix-daemon";
};
};
};
}