nix/module/NixOnDroid.nix

51 lines
621 B
Nix
Raw Normal View History

2024-03-04 23:11:23 +03:00
{ pkgs, inputs, const, ... }: {
environment.packages = with pkgs; [
android-tools
binwalk
coreutils
curl
diffutils
ffmpeg
file
findutils
gcc
git
gnugrep
gnumake
gnused
gnutar
gzip
hostname
imagemagick
jq
lsof
ltex-ls
man
ncdu
neovim
nmap
openssh
parallel
pv
ripgrep
sqlite
tmux
tree
utillinux
wget
xz
yt-dlp
zip unzip
];
2024-03-04 23:11:23 +03:00
home-manager.config = {
home.stateVersion = const.droidStateVersion;
home.file = {
"nixos".source = inputs.dotfiles;
};
programs.bash = {
bashrcExtra = "source ~/nixos/module/common/bash/Bashrc.sh";
};
};
}