diff --git a/README.md b/README.md index ef34961..0159cad 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,19 @@ If you want to learn more about my system, this project has a [Wiki](https://git # Install / Steps To Reproduce My System -- Enable flakes in your default configuration.nix by adding this: +- Enable flakes, and the Hyprland cache so you don't have to build it, in your default configuration.nix by adding this: ``` # Enable Flakes and the new command-line tool -nix.settings.experimental-features = [ "nix-command" "flakes" ]; +nix = { + settings = { + experimental-features = [ "nix-command" "flakes" ]; + substituters = ["https://hyprland.cachix.org"]; + trusted-public-keys = [ + "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" + ]; + }; +}; ``` This file should be located at /etc/nixos/configuration.nix