diff options
| author | Fuwn <[email protected]> | 2024-10-12 00:55:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-12 00:55:45 -0700 |
| commit | 3a328dff2b9eaf569f8c1242d7e77abd17a3215d (patch) | |
| tree | 80900efb76a151d131da0e52b7d3232044618284 /README.md | |
| parent | 8f075f890e860488468f922bfd6e0ae6ff194776 (diff) | |
| download | pywal.nix-3a328dff2b9eaf569f8c1242d7e77abd17a3215d.tar.xz pywal.nix-3a328dff2b9eaf569f8c1242d7e77abd17a3215d.zip | |
docs(readme): update repository name
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,8 +1,8 @@ -# 🌈 `pywal-nix` +# 🌈 `pywal.nix` > Extremely straightforward evaluation-time Pywal integration for Home Manager -`pywal-nix` is focused on providing the simplest way of integrating custom +`pywal.nix` is focused on providing the simplest way of integrating custom Pywal colour schemes into any Home Manager configuration at evaluation-time. I needed a pure (not `--impure`) Nix solution. I made a pure Nix solution. It @@ -19,7 +19,7 @@ works well. (import ( pkgs.fetchFromGitHub { owner = "Fuwn"; - repo = "pywal-nix"; + repo = "pywal.nix"; rev = "..."; # Use the current commit revision hash hash = "..."; # Use the current commit sha256 hash } @@ -34,18 +34,18 @@ works well. ### Flakes & Home-Manager -Add `pywal-nix` to your flake inputs. +Add `pywal.nix` to your flake inputs. ```nix { inputs.pywal-nix = { - url = "github:Fuwn/pywal-nix"; + url = "github:Fuwn/pywal.nix"; inputs.nixpkgs.follows = "nixpkgs"; # Recommended }; } ``` -After adding `pywal-nix` to your flake inputs, consume it as a Home Manager +After adding `pywal.nix` to your flake inputs, consume it as a Home Manager module. ```nix @@ -62,7 +62,7 @@ inputs.home-manager.lib.homeManagerConfiguration { ## Configuration & Usage -Configure and access `pywal-nix` in your Home Manager configuration through the +Configure and access `pywal.nix` in your Home Manager configuration through the `pywal-nix` attribute. ```nix @@ -91,11 +91,11 @@ Configure and access `pywal-nix` in your Home Manager configuration through the ### Colour Scheme -`pywal-nix`'s generated colour scheme is accessible through either the +`pywal.nix`'s generated colour scheme is accessible through either the `colourScheme` or `colorScheme` set. Likewise, colours are accessible through either the `colours` or `colors` sets. -The colour scheme interface generated by `pywal-nix` comes in the following shape: +The colour scheme interface generated by `pywal.nix` comes in the following shape: ```typescript { |