nix/module/NixOnDroid.nix

109 lines
2.3 KiB
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ pkgs, inputs, const, style, util, key, setting, ... } @args: let
2024-04-03 06:21:29 +03:00
homePath = "/data/data/com.termux.nix/files/home";
2024-04-06 03:03:58 +03:00
tmux = import ./common/tmux/Init.nix args;
tmuxScript = pkgs.writeShellScriptBin "tmux_script" tmux.script;
bash = import ./common/bash/Init.nix args;
nvim = import ./common/nvim/Init.nix args;
ssh = import ./common/ssh/Init.nix args;
font = pkgs.runCommandNoCC "font" {} ''
cp ${pkgs.nerdfonts.override { fonts = [ "Terminus" ]; }}/share/fonts/truetype/NerdFonts/TerminessNerdFontMono-Regular.ttf $out
'';
colors = ''
background=#${style.color.bg.dark}
foreground=#${style.color.fg.light}
'';
2024-03-06 05:47:59 +03:00
in {
2024-03-25 01:42:34 +03:00
# NOTE: Split into modules?
environment.packages = with pkgs; [
android-tools
binwalk
coreutils
curl
diffutils
ffmpeg
file
findutils
gawk
gcc
gdu
git
gnugrep
gnumake
gnused
gnutar
gzip
hostname
imagemagick
jq
lsof
man
neofetch
nmap
openssh
parallel
pv
2024-03-26 06:31:22 +03:00
ripgrep
2024-03-25 01:42:34 +03:00
rsync
sqlite
2024-04-07 10:12:27 +03:00
pkgs.tmux tmuxScript
2024-03-25 01:42:34 +03:00
tree
utillinux
wget
xz
yt-dlp
zip unzip
];
2024-03-26 06:36:00 +03:00
time.timeZone = const.timeZone;
2024-03-26 06:31:22 +03:00
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
home-manager.config = {
home.stateVersion = const.droidStateVersion;
home.file = {
2024-04-06 03:03:58 +03:00
".dotfiles".source = inputs.self;
".ssh/config".text = ssh.config;
".termux/_font.ttf".source = font;
".termux/_colors.properties".text = colors;
};
home.sessionVariables = {
2024-03-26 06:31:22 +03:00
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
NIXPKGS_ALLOW_UNFREE = "1";
NIX_CURRENT_SYSTEM = "${pkgs.stdenv.system}";
TERM = "xterm-256color";
2024-04-03 00:23:03 +03:00
};
programs.bash = {
2024-04-02 20:34:27 +03:00
enable = true;
2024-04-04 14:44:59 +03:00
bashrcExtra = bash.config + ''
2024-03-26 05:48:53 +03:00
[[ -f ~/.termux/font.ttf ]] || {
cp ~/.termux/_font.ttf ~/.termux/font.ttf
2024-04-04 11:46:21 +03:00
cp ~/.termux/_colors.properties ~/.termux/colors.properties
_warn "Termux config installed, please restart."
2024-03-26 05:48:53 +03:00
};
'';
};
programs.tmux = {
2024-04-02 20:34:27 +03:00
enable = true;
2024-04-06 03:03:58 +03:00
extraConfig = tmux.config;
};
programs.git = {
enable = true;
extraConfig = {
credential.helper = "store";
init.defaultBranch = "main";
pull.rebase = true;
push.autoSetupRemote = true;
rebase.autoStash = true;
};
};
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
2024-04-06 03:03:58 +03:00
extraConfig = nvim.config;
};
};
}