nixos/profiles/android/default.nix

20 lines
306 B
Nix
Raw Permalink Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-01-22 17:18:37 +01:00
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;
2024-07-28 21:08:02 +02:00
environment.systemPackages = with pkgs; [ scrcpy ];
2023-01-22 17:18:37 +01:00
};
}