diff options
author | kotontrion <[email protected]> | 2024-10-10 11:28:11 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-10-10 11:28:11 +0200 |
commit | 08f10ce3968166c55f5f2e3009415e4899e9a73b (patch) | |
tree | c6f914debe8f86e8ec7275f86a4181b20cf5f45a /docs/guide/getting-started/nix.md | |
parent | 10447f5abcb28f3df1544f1732f82d538130b3c9 (diff) | |
parent | 075c7e34aa0fbdc07c86965ab5a2ae79b92d3fd3 (diff) |
Merge branch 'main' into feat/cava
Diffstat (limited to 'docs/guide/getting-started/nix.md')
-rw-r--r-- | docs/guide/getting-started/nix.md | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/docs/guide/getting-started/nix.md b/docs/guide/getting-started/nix.md index 2b04bdc..c9ed270 100644 --- a/docs/guide/getting-started/nix.md +++ b/docs/guide/getting-started/nix.md @@ -146,9 +146,34 @@ Example content of `home.nix` file AGS by default only includes the core `libastal` library. If you want to include any other [library](../libraries/references) you have to add them to `extraPackages`. -You can also add binaries which will be added to `$PATH`. +You can also add binaries which will be added to the gjs runtime. :::warning The `configDir` option symlinks the given path to `~/.config/ags`. If you already have your source code there leave it as `null`. ::: + +The AGS flake does not expose the `astal` cli to the home environment, you have to do that yourself if you want: + +:::code-group + +```nix [<i class="devicon-nixos-plain"></i> home.nix] +home.packages = [ inputs.ags.packages.${pkgs.system}.astal ]; +``` + +::: + +Same applies to the `extraPackages` option, it does not expose the passed packages to the home environment. +To make astal cli tools available to home environments, you have to add them yourself: + +:::code-group + +```nix [<i class="devicon-nixos-plain"></i> home.nix] +home.packages = [ inputs.ags.packages.${pkgs.system}.notifd ]; +``` + +```sh [<i class="devicon-bash-plain"></i> sh] +astal-notifd --help +``` + +::: |