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
}