diff options
| author | Fuwn <[email protected]> | 2024-09-13 13:15:21 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-13 13:15:21 +0000 |
| commit | 683e22d8dda1efd2db86ed4a30159bd99597daad (patch) | |
| tree | c2eab977fa4a70ce19537262b2ea58317aacf35d /README.md | |
| parent | feat(nix): implement standalone mode (diff) | |
| download | pywal.nix-683e22d8dda1efd2db86ed4a30159bd99597daad.tar.xz pywal.nix-683e22d8dda1efd2db86ed4a30159bd99597daad.zip | |
chore(nix): use flake-utils for per-system
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ works well. rev = "..."; # Use the current commit revision hash hash = "..."; # Use the current commit sha256 hash } - )).${builtins.currentSystem}.homeManagerModules.default + )).homeManagerModules.${builtins.currentSystem}.default ]; } ``` @@ -53,7 +53,7 @@ module. inputs.home-manager.lib.homeManagerConfiguration { modules = [ - inputs.pywal-nix.${pkgs.system}.homeManagerModules.default + inputs.pywal-nix.homeManagerModules.${pkgs.system}.default ]; }; |