From 00cfd236ab933db37306796080b3c7cc35a02ffe Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 4 Feb 2024 01:33:14 -0700 Subject: [PATCH] [NixOS] Add android studio to adele --- nixos/machines/adele.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/machines/adele.nix b/nixos/machines/adele.nix index 0a1a23d1..8e041116 100644 --- a/nixos/machines/adele.nix +++ b/nixos/machines/adele.nix @@ -19,6 +19,10 @@ hardware.enableRedistributableFirmware = true; + environment.systemPackages = with pkgs; [ + android-studio + ]; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ];