Compare commits

...

2 commits

Author SHA1 Message Date
Dmitry Voronin 81d71b0a5d Android : Add gcc. 2024-03-24 22:42:34 +00:00
Dmitry Voronin 9fb0a489df Nvim : Add extra gcc dep for treesitter. 2024-03-24 22:42:24 +00:00
2 changed files with 44 additions and 39 deletions

View file

@ -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
];
}

View file

@ -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;