Updated Installation (markdown)

Marie 2023-05-06 15:19:19 +02:00
parent 27d1fd28e0
commit be0c6be35e

@ -87,7 +87,7 @@ Or alternatively in a declarative way by appending the following to your `config
Add the following to your `configuration.nix`.
```nix
let
aagl-gtk-on-nix = import (builtins.fetchTarball "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz"){ inherit pkgs; };
aagl-gtk-on-nix = import (builtins.fetchTarball "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz");
in
{
imports = [
@ -104,7 +104,7 @@ nixos-rebuild switch
Alternatively, you can install the launcher using <a href="https://github.com/nix-community/home-manager">home-manager</a> by adding the following to your `home.nix`.
```nix
let
aagl-gtk-on-nix = import (builtins.fetchTarball "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz"){ inherit pkgs; };
aagl-gtk-on-nix = import (builtins.fetchTarball "https://github.com/ezKEa/aagl-gtk-on-nix/archive/main.tar.gz");
in
{
home.packages = [ aagl-gtk-on-nix.an-anime-game-launcher ];