diff options
author | Aylur <[email protected]> | 2024-11-24 00:04:07 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-12-02 22:34:01 +0100 |
commit | 2f09ed83386b334f0dfb7f376b99739b15e49fc9 (patch) | |
tree | 4be7848780c4145310a5fa69c60661a61c69ca47 /nix/devshell.nix | |
parent | 990f031507b21f8a18c0710016fb76b1f260afe8 (diff) |
gjs gtk4 support
export jsx-runtime
Diffstat (limited to 'nix/devshell.nix')
-rw-r--r-- | nix/devshell.nix | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/nix/devshell.nix b/nix/devshell.nix index 66c46e5..9217a8d 100644 --- a/nix/devshell.nix +++ b/nix/devshell.nix @@ -40,21 +40,34 @@ libdbusmenu-gtk3 wayland blueprint-compiler + libadwaita dart-sass lua python gjs ]; + + lsp = with pkgs; [ + nodejs + mesonlsp + vala-language-server + vtsls + vscode-langservers-extracted + ]; in { default = pkgs.mkShell { - inherit buildInputs; + packages = buildInputs ++ lsp; }; astal = pkgs.mkShell { - buildInputs = + packages = buildInputs + ++ lsp ++ builtins.attrValues ( - builtins.removeAttrs self.packages.${pkgs.system} ["docs"] + builtins.removeAttrs self.packages.${pkgs.system} [ + "docs" + "cava" # FIXME: temporary autoreconf + ] ); }; } |