Compare commits
2 commits
fd92907a05
...
81d71b0a5d
Author | SHA1 | Date | |
---|---|---|---|
Dmitry Voronin | 81d71b0a5d | ||
Dmitry Voronin | 9fb0a489df |
|
@ -1,6 +1,46 @@
|
|||
{ 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 = {
|
||||
|
@ -39,42 +79,4 @@ 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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, ... }: let
|
||||
{ inputs, pkgs, ... }: let
|
||||
nvimCfg = import ./nvim/Init.nix { inputs = inputs; };
|
||||
in {
|
||||
environment = {
|
||||
|
@ -6,6 +6,9 @@ in {
|
|||
EDITOR = "nvim";
|
||||
MANPAGER = "nvim +Man!";
|
||||
};
|
||||
systemPackages = with pkgs; [
|
||||
gcc
|
||||
];
|
||||
};
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue