wiki/getting-started.md

51 lines
1.2 KiB
Markdown
Raw Normal View History

2024-05-05 15:44:05 +00:00
---
title: Getting Started Guide
description: A quick guide to getting started with installing and using Auxolotl.
published: true
2024-05-05 17:53:55 +00:00
date: 2024-05-05T17:53:54.448Z
2024-05-05 15:44:05 +00:00
tags: installation, tutorial
editor: markdown
dateCreated: 2024-05-05T15:44:03.224Z
---
2024-05-05 17:53:55 +00:00
# Getting Started With Auxolotl
2024-05-05 15:44:05 +00:00
There are a few ways you can get started with Aux:
2024-05-05 17:53:55 +00:00
- [I want to install the full distribution.](#installing-the-aux-distribution)
2024-05-05 15:44:05 +00:00
- [I want to convert my existing NixOS install to Auxolotl](#converting-nixos-to-aux)
2024-05-05 17:53:55 +00:00
- [I just want to install the Aux package manager and command-line tool.](#installing-the-aux-command-line-tool)
2024-05-05 15:44:05 +00:00
## Installing the Aux command-line tool
Open a terminal and run this command to install Aux:
```shell=
$ TODO
```
Verify the installation by running this command:
```shell=
$ TODO
```
## Converting NixOS to Aux
If you have an existing NixOS installation and want to convert it to use Aux, all you need to do is change your `nixpkgs` input to use the Auxolotl nixpkgs repository.
Open your `flake.nix` file and change the following line:
```nix
nixpkgs.url = "github:NixOS/nixpkgs/nixos-<release>";
```
to:
```nix
nixpkgs.url = "github:auxolotl/nixpkgs/nixos-<release>";
```
## Installing the Aux distribution
==TODO==