--- tags: - nix - nixos references: - https://nixos.org/manual/nixos/unstable/#sec-writing-modules --- Extra care must be taken when writing systemd services using Exec* due to interpolation and such. `utils.escapeSystemdExecArg` and `utils.escapeSystemdExecArg` exist. ```nix { options = { name = mkOption { type = type specification; default = default value; example = example value; description = "Description for use in the NixOS manual."; }; }; } ```