diff options
author | Aylur <[email protected]> | 2024-09-12 00:43:42 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-12 00:43:42 +0200 |
commit | cbedb70d07664287dd53aeb4dd52918ccd862667 (patch) | |
tree | eb4c0acff328e5831a91f0ba54fdfe2da6b9e9e2 | |
parent | 6c5d7659a75c093588117c4c28dd046409b3ac8f (diff) |
docs: touchups
-rw-r--r-- | docs/getting-started/nix.md | 1 | ||||
-rw-r--r-- | examples/lua/simple-bar/app.lua | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting-started/nix.md b/docs/getting-started/nix.md index 2f320f3..8bd5965 100644 --- a/docs/getting-started/nix.md +++ b/docs/getting-started/nix.md @@ -22,6 +22,7 @@ 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 }; }; } diff --git a/examples/lua/simple-bar/app.lua b/examples/lua/simple-bar/app.lua index 8c3359b..aecf7a6 100644 --- a/examples/lua/simple-bar/app.lua +++ b/examples/lua/simple-bar/app.lua @@ -1,4 +1,3 @@ -#!/usr/bin/lua local astal = require("astal") local App = astal.App |