STIGhubSTIGhub
STIGsSearchCompareAbout

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • Compare Versions

Resources

  • About
  • VPAT
  • DISA STIG Library
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Anduril NixOS Security Technical Implementation Guide

V-268107

CAT II (Medium)

NixOS must have the packages required for offloading audit logs installed and running.

Rule ID

SV-268107r1131017_rule

STIG

Anduril NixOS Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-000154, CCI-001665

Discussion

Information stored in one location is vulnerable to accidental or incidental deletion or alteration. Off-loading is a common process in information systems with limited audit storage capacity. NixOS supports "systemd-journald", which is a common system utility providing support for message logging. Support for both internet and UNIX domain sockets enables this utility to support both local and remote logging. This utility also natively supports TLS to securely encrypt and off-load auditing. Satisfies: SRG-OS-000051-GPOS-00024, SRG-OS-000269-GPOS-00103

Check Content

Verify that the systemd-journald service is running with the following command:

$ systemctl status systemd-journald.service

    systemd-journald.service - Journal Service
     Loaded: loaded (/etc/systemd/system/systemd-journald.service; enabled; preset: ignored)
    Drop-In: /nix/store/z8klzmxqgpmn8ganwrsqizy3qdxnirr8-system-units/systemd-journald.service.d
             +-overrides.conf
     Active: active (running) since Mon 2025-03-10 10:41:08 PDT; 1 day 2h ago

If the systemd-journald.service is not "active" and "running", this is a finding.

Fix Text

Configure the operating system to off-load audit logs.

Add the following Nix code to the NixOS Configuration, usually located in /etc/nixos/configuration.nix or /etc/nixos/flake.nix:

 services.journald.audit = true;

Rebuild and switch to the new NixOS configuration:
$ sudo nixos-rebuild switch