Compare commits

..

No commits in common. "81d71b0a5d3e951d27c56d8774bb87a2ef120426" and "fd92907a05d321b9324199216dbd10533ed543d7" have entirely different histories.

2 changed files with 39 additions and 44 deletions

View file

@ -1,46 +1,6 @@
{ pkgs, inputs, const, ... }: let
homePath = "/data/data/com.termux.nix/files/home";
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.stateVersion = const.droidStateVersion;
home.file = {
@ -79,4 +39,42 @@ in {
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
];
}

View file

@ -1,4 +1,4 @@
{ inputs, pkgs, ... }: let
{ inputs, ... }: let
nvimCfg = import ./nvim/Init.nix { inputs = inputs; };
in {
environment = {
@ -6,9 +6,6 @@ in {
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
};
systemPackages = with pkgs; [
gcc
];
};
programs.neovim = {
enable = true;