nixos/profiles/android/default.nix

17 lines
308 B
Nix
Raw Normal View History

2023-01-22 17:18:37 +01:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.android;
in
{
options.my.profiles.android = with lib; {
enable = mkEnableOption "android profile";
};
config = lib.mkIf cfg.enable {
programs.adb.enable = true;
environment.systemPackages = with pkgs; [
scrcpy
];
};
}