Compare commits
No commits in common. "81d71b0a5d3e951d27c56d8774bb87a2ef120426" and "fd92907a05d321b9324199216dbd10533ed543d7" have entirely different histories.
81d71b0a5d
...
fd92907a05
|
@ -1,46 +1,6 @@
|
||||||
{ pkgs, inputs, const, ... }: let
|
{ pkgs, inputs, const, ... }: let
|
||||||
homePath = "/data/data/com.termux.nix/files/home";
|
homePath = "/data/data/com.termux.nix/files/home";
|
||||||
in {
|
in {
|
||||||
# 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
|
|
||||||
rsync
|
|
||||||
sqlite
|
|
||||||
tmux
|
|
||||||
tree
|
|
||||||
utillinux
|
|
||||||
wget
|
|
||||||
xz
|
|
||||||
yt-dlp
|
|
||||||
zip unzip
|
|
||||||
];
|
|
||||||
|
|
||||||
home-manager.config = {
|
home-manager.config = {
|
||||||
home.stateVersion = const.droidStateVersion;
|
home.stateVersion = const.droidStateVersion;
|
||||||
home.file = {
|
home.file = {
|
||||||
|
@ -79,4 +39,42 @@ in {
|
||||||
extraConfig = (import ./common/nvim/Init.nix { inputs = inputs; }).customRc;
|
extraConfig = (import ./common/nvim/Init.nix { inputs = inputs; }).customRc;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.packages = with pkgs; [
|
||||||
|
android-tools
|
||||||
|
binwalk
|
||||||
|
coreutils
|
||||||
|
curl
|
||||||
|
diffutils
|
||||||
|
ffmpeg
|
||||||
|
file
|
||||||
|
findutils
|
||||||
|
gawk
|
||||||
|
gdu
|
||||||
|
git
|
||||||
|
gnugrep
|
||||||
|
gnumake
|
||||||
|
gnused
|
||||||
|
gnutar
|
||||||
|
gzip
|
||||||
|
hostname
|
||||||
|
imagemagick
|
||||||
|
jq
|
||||||
|
lsof
|
||||||
|
man
|
||||||
|
neofetch
|
||||||
|
nmap
|
||||||
|
openssh
|
||||||
|
parallel
|
||||||
|
pv
|
||||||
|
rsync
|
||||||
|
sqlite
|
||||||
|
tmux
|
||||||
|
tree
|
||||||
|
utillinux
|
||||||
|
wget
|
||||||
|
xz
|
||||||
|
yt-dlp
|
||||||
|
zip unzip
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, pkgs, ... }: let
|
{ inputs, ... }: let
|
||||||
nvimCfg = import ./nvim/Init.nix { inputs = inputs; };
|
nvimCfg = import ./nvim/Init.nix { inputs = inputs; };
|
||||||
in {
|
in {
|
||||||
environment = {
|
environment = {
|
||||||
|
@ -6,9 +6,6 @@ in {
|
||||||
EDITOR = "nvim";
|
EDITOR = "nvim";
|
||||||
MANPAGER = "nvim +Man!";
|
MANPAGER = "nvim +Man!";
|
||||||
};
|
};
|
||||||
systemPackages = with pkgs; [
|
|
||||||
gcc
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue