aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-13 13:15:21 +0000
committerFuwn <[email protected]>2024-09-13 13:15:21 +0000
commit683e22d8dda1efd2db86ed4a30159bd99597daad (patch)
treec2eab977fa4a70ce19537262b2ea58317aacf35d /README.md
parentfeat(nix): implement standalone mode (diff)
downloadpywal.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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 96d2fc6..1e97572 100644
--- a/README.md
+++ b/README.md
@@ -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
];
};