diff options
author | Aylur <[email protected]> | 2024-09-12 01:18:50 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-12 01:18:50 +0200 |
commit | 56aa40a8765fc3d2da61cda3775e894d8dd0c7d9 (patch) | |
tree | 2dfc0ab5599b300ef75ca79f9c7ed12c74f4bc8e /docs | |
parent | 865675a0122faae76db3196c5cba96e012f9e2e7 (diff) |
fixes and touchups
Diffstat (limited to 'docs')
-rw-r--r-- | docs/getting-started/nix.md | 8 |
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 + ]; }; }; } |