summaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-09-12 01:18:50 +0200
committerAylur <[email protected]>2024-09-12 01:18:50 +0200
commit56aa40a8765fc3d2da61cda3775e894d8dd0c7d9 (patch)
tree2dfc0ab5599b300ef75ca79f9c7ed12c74f4bc8e /docs/getting-started
parent865675a0122faae76db3196c5cba96e012f9e2e7 (diff)
fixes and touchups
Diffstat (limited to 'docs/getting-started')
-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
+ ];
};
};
}