diff options
| -rw-r--r-- | configuration.nix | 3 | ||||
| -rw-r--r-- | modules/android.nix | 4 | ||||
| -rw-r--r-- | modules/lsp.nix | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index c1f6dc6..1629862 100644 --- a/configuration.nix +++ b/configuration.nix @@ -54,6 +54,9 @@ }; environment.systemPackages = with pkgs; [ + udev + unzip + zip vim neovim tree-sitter diff --git a/modules/android.nix b/modules/android.nix index 7da4990..5778103 100644 --- a/modules/android.nix +++ b/modules/android.nix @@ -9,6 +9,9 @@ users.users.anand.extraGroups = [ "adbusers" ]; + services.udev.packages = [ + pkgs.android-udev-rules + ]; #### USER (Home Manager) #### @@ -26,6 +29,7 @@ { home.packages = [ pkgs.flutter + pkgs.android-tools androidSdk.androidsdk androidSdk.emulator ]; diff --git a/modules/lsp.nix b/modules/lsp.nix index 8cc7599..1db6d9e 100644 --- a/modules/lsp.nix +++ b/modules/lsp.nix @@ -14,6 +14,7 @@ pkgs.emmet-ls pkgs.cmake-language-server pkgs.phpactor + pkgs.intelephense ]; }; } |
