Standalone NixOS modules: ai, bluetooth, dev, fwupd, libvirtd, networkmanager, podman Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
322 B
Nix
19 lines
322 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.dev = { config, lib, pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
android-tools
|
|
bat
|
|
lazygit
|
|
fd
|
|
fzf
|
|
glow
|
|
nixfmt
|
|
nix-init
|
|
nix-output-monitor
|
|
ripgrep
|
|
];
|
|
|
|
users.users.user.extraGroups = [ "adbusers" ];
|
|
};
|
|
}
|