21 lines
446 B
Nix
21 lines
446 B
Nix
{ config, pkgs, pkgs-unstable, lib, ... }:
|
|
|
|
{
|
|
|
|
inputs.octofriend-nix.url = "path:../appflakes/octofriend/flake.nix";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(python3.withPackages(ps: with ps; [ pandas requests python-dotenv pip uv ]))
|
|
nodejs
|
|
putty # SSH/Telnet client
|
|
octofriend-nix.packages.x86_64-linux.default
|
|
];
|
|
|
|
programs.nix-ld.enable = true;
|
|
|
|
# Android Development
|
|
programs.adb.enable = true;
|
|
|
|
|
|
|
|
}
|