MyNixOS website logo

Default settings for noctalia, can be written as:

  • A Nix attrset (converted to TOML via nixpkgs' tomlFormat)
  • A raw TOML string
  • A path to a .toml file

See https://docs.noctalia.dev/v5 for more information and examples.

Note: these settings can still be overwritten at runtime via the settings menu.

Declarations
Type
TOML value or string or absolute path
Default
{ }
Example
{
  shell = {
    font = "JetBrainsMono Nerd Font";
    settings_show_advanced = true;
  };

  theme = {
    mode = "dark";
    source = "builtin";
    builtin = "Catppuccin";
  };
}