nixos-demo/software/nix-daemon.nix
2025-07-12 23:16:15 +02:00

15 lines
209 B
Nix

{ ... }:
{
systemd.services = {
nix-daemon = {
environment = {
TMPDIR = "/run/nix-daemon";
};
serviceConfig = {
RuntimeDirectory = "nix-daemon";
};
};
};
}