Reorganize files

This commit is contained in:
Wroclaw 2024-01-20 17:43:57 +01:00
parent f449490474
commit 58ce7ac394
14 changed files with 2 additions and 2 deletions

10
nix-os/adb.nix Normal file
View file

@ -0,0 +1,10 @@
{ lib, config, pkgs, ... }:
{
config = {
programs.adb.enable = true;
environment.systemPackages = with pkgs; [
scrcpy
];
};
}