summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started/nix.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/getting-started/nix.md b/docs/getting-started/nix.md
index bfdfdc7..f09a80b 100644
--- a/docs/getting-started/nix.md
+++ b/docs/getting-started/nix.md
@@ -22,7 +22,13 @@ Using Astal on Nix will require you to package your project.
in {
packages.${system}.default = astal.lib.mkLuaPacakge {
inherit pkgs;
- src = ./path/to/project; # should contain app.lua
+ src = ./path/to/project; # should contain init.lua
+
+ # add extra glib packages or binaries
+ extraPackages = [
+ astal.packages.${system}.battery
+ pkgs.dart-sass
+ ];
};
};
}