Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Install the Module

import the nixos module:

# configuration.nix
{inputs, pkgs, config, ...}:
{

  imports = [
      inputs.nix-luanti.nixosModules.default

      # your other imports
  ];

  # your other configuration
}

if you are using home-manager, use the home-manager module instead:

# home.nix
{inputs, pkgs, config, ...}:
{

  imports = [
      inputs.nix-luanti.homeManagerModules.default

      # your other imports
  ];

  # your other configuration
}