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

Add recipes.nix as an input

{
    ...
    inputs.recipes.url = "git+https://codeberg.org/adtya/recipes.nix?ref=main";
    outputs = inputs: {
        ...
    };
}

Add the package overlay

nixpkgs.overlays = [ inputs.recipes.overlays.default ];

Add the NixOS Module

nixosConfigurations.<hostname> = lib.nixosSystem {
    ...
    modules = [
       inputs.recipes.nixosModules.default
       ...
    ];
    ...
};