diff options
author | Aylur <[email protected]> | 2024-09-11 20:52:44 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-11 20:52:44 +0000 |
commit | 0e259e49357d5389db897414fc52b50b1ce1d14c (patch) | |
tree | a4bb497e24eae2bd807f638953433f455f17f7a5 /nix/devshell.nix | |
parent | 374d76f4152ea46987203f49642d7d46aff221ab (diff) |
example: add lua simple-bar
Diffstat (limited to 'nix/devshell.nix')
-rw-r--r-- | nix/devshell.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nix/devshell.nix b/nix/devshell.nix index 9f664f6..936f4b4 100644 --- a/nix/devshell.nix +++ b/nix/devshell.nix @@ -38,6 +38,7 @@ libdbusmenu-gtk3 wayland + dart-sass lua python gjs @@ -47,6 +48,10 @@ in { inherit buildInputs; }; astal = pkgs.mkShell { - buildInputs = buildInputs ++ (builtins.attrValues self.packages.${pkgs.system}); + buildInputs = + buildInputs + ++ builtins.attrValues ( + builtins.removeAttrs self.packages.${pkgs.system} ["docs"] + ); }; } |