diff options
| author | Fuwn <[email protected]> | 2024-10-12 07:55:45 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-12 07:55:45 +0000 |
| commit | c9277b706616dd3620fdf918ef65feb5a0d3a6cf (patch) | |
| tree | 80900efb76a151d131da0e52b7d3232044618284 | |
| parent | feat(flake): kitty integration (diff) | |
| download | pywal.nix-c9277b706616dd3620fdf918ef65feb5a0d3a6cf.tar.xz pywal.nix-c9277b706616dd3620fdf918ef65feb5a0d3a6cf.zip | |
docs(readme): update repository name
| -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 { |