From 94885e53e64e9cc17c988fdee7ca6f96fa1d7b2e Mon Sep 17 00:00:00 2001 From: Eggflaw <108559753+Eggflaw@users.noreply.github.com> Date: Sat, 29 Jun 2024 21:05:43 +0900 Subject: [PATCH] docs: add Nix installation method --- pages/getting-started/1-installation.mdx | 51 ++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/pages/getting-started/1-installation.mdx b/pages/getting-started/1-installation.mdx index fd2f183..150133b 100644 --- a/pages/getting-started/1-installation.mdx +++ b/pages/getting-started/1-installation.mdx @@ -92,6 +92,57 @@ yay -S [PACKAGE_NAME] Only one of these AUR packages must be installed at a time in order to prevent conflicts. +### Nix + +macOS* and Linux users can use [Nix](https://nixos.org/) to install Lune. + + + macOS is currently broken. Help is wanted. + + +#### Imperatively + +##### On NixOS + +```sh copy filename="Bash" +nix-env -iA nixos.lune +``` + +##### On Non NixOS without flakes + +```sh copy filename="Bash" +nix-env -iA nixpkgs.lune +``` + +##### On Non NixOS with flakes + +```sh copy filename="Bash" +nix profile install nixpkgs#lune +``` +#### Declaratively + +##### With [home-manager](https://github.com/nix-community/home-manager) + +```nix copy filename="nix" +home.packages = with pkgs; [ + lune +]; +``` + +##### system-wide NixOS configuration + +```nix copy filename="nix" +enviroment.systemPackages = with pkgs; [ + lune +]; +``` + +##### Temporarily + +```sh copy filename="Bash" +nix-shell -p lune +``` +