system.defaults.dock.persistent-apps

Persistent applications, spacers, files, and folders in the dock.

Type
null or (list of (attribute-tagged union with choices: app, file, folder, spacer or (string or absolute path) convertible to it))
Default
null
Example
[
  {
    app = "/Applications/Safari.app";
  }
  {
    spacer = {
      small = false;
    };
  }
  {
    spacer = {
      small = true;
    };
  }
  {
    folder = "/System/Applications/Utilities";
  }
  {
    file = "/User/example/Downloads/test.csv";
  }
]
Declared
<nix-darwin/modules/system/defaults/dock.nix>