Changed theme and improved README to keep you from building Hyprland the first time

This commit is contained in:
Tyler Kelley 2024-02-02 02:11:27 -06:00
parent dbae39aeca
commit ae7b3dca65

View File

@ -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 # 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 # 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 This file should be located at /etc/nixos/configuration.nix