23 lines
334 B
Nix
23 lines
334 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.dev =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
android-tools
|
|
lazygit
|
|
fd
|
|
fzf
|
|
nixfmt
|
|
nix-init
|
|
ripgrep
|
|
];
|
|
|
|
users.users.user.extraGroups = [ "adbusers" ];
|
|
};
|
|
}
|