diff options
-rw-r--r-- | nixos/profiles/workstation/android.nix | 9 | ||||
-rw-r--r-- | nixos/profiles/workstation/default.nix | 5 |
2 files changed, 14 insertions, 0 deletions
diff --git a/nixos/profiles/workstation/android.nix b/nixos/profiles/workstation/android.nix new file mode 100644 index 0000000..0b7a086 --- /dev/null +++ b/nixos/profiles/workstation/android.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + # CLI tools + android-tools # for fastboot to install GrapheneOS + go-mtpfs + ]; +} diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index d987a0f..0332200 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -23,6 +23,7 @@ in ./graphical.nix ./dev.nix ./create.nix + ./android.nix ]; config = { @@ -45,6 +46,10 @@ in (callPackage "${sources.agenix}/pkgs/agenix.nix" {}) unzip + + # Android + android-tools + go-mtpfs ]; environment.sessionVariables = { |