MyNixOS website logo
option

system.defaults.dock.persistent-apps

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

Declarations
    Type
    null or (list of (attribute-tagged union 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";
      }
    ]