NixOnDroid : Add Android config.
This commit is contained in:
parent
35a604609a
commit
474de1bbad
|
@ -7,6 +7,12 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Android.
|
||||||
|
nix-on-droid = {
|
||||||
|
url = "github:t184256/nix-on-droid/release-23.05";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
# Nvim plugins.
|
# Nvim plugins.
|
||||||
nvimAlign = {
|
nvimAlign = {
|
||||||
url = "git+https://git.voronind.com/mirror/mini.align.git";
|
url = "git+https://git.voronind.com/mirror/mini.align.git";
|
||||||
|
@ -90,7 +96,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, dotfiles, ... } @inputs: {
|
outputs = { self, nixpkgs, dotfiles, nix-on-droid, ... } @inputs: {
|
||||||
# Constant values.
|
# Constant values.
|
||||||
nixosModules.const = {
|
nixosModules.const = {
|
||||||
hashedPassword = "$y$j9T$oqCB16i5E2t1t/HAWaFd5.$tTaHtAcifXaDVpTcRv.yH2/eWKxKE9xM8KcqXHfHrD7"; # Use `mkpasswd`.
|
hashedPassword = "$y$j9T$oqCB16i5E2t1t/HAWaFd5.$tTaHtAcifXaDVpTcRv.yH2/eWKxKE9xM8KcqXHfHrD7"; # Use `mkpasswd`.
|
||||||
|
@ -239,5 +245,10 @@
|
||||||
./user/Voronind.nix
|
./user/Voronind.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Android.
|
||||||
|
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||||
|
modules = [ ./module/NixOnDroid.nix ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
38
.config/linux/system/module/NixOnDroid.nix
Normal file
38
.config/linux/system/module/NixOnDroid.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
environment.packages = with pkgs; [
|
||||||
|
android-tools
|
||||||
|
binwalk
|
||||||
|
coreutils
|
||||||
|
curl
|
||||||
|
diffutils
|
||||||
|
ffmpeg
|
||||||
|
file
|
||||||
|
findutils
|
||||||
|
gcc
|
||||||
|
git
|
||||||
|
gnugrep
|
||||||
|
gnumake
|
||||||
|
gnused
|
||||||
|
gnutar
|
||||||
|
gzip
|
||||||
|
hostname
|
||||||
|
imagemagick
|
||||||
|
jq
|
||||||
|
lsof
|
||||||
|
ltex-ls
|
||||||
|
man
|
||||||
|
ncdu
|
||||||
|
nmap
|
||||||
|
openssh
|
||||||
|
parallel
|
||||||
|
pv
|
||||||
|
ripgrep
|
||||||
|
sqlite
|
||||||
|
tree
|
||||||
|
utillinux
|
||||||
|
wget
|
||||||
|
xz
|
||||||
|
yt-dlp
|
||||||
|
zip unzip
|
||||||
|
];
|
||||||
|
}
|
|
@ -15,7 +15,7 @@
|
||||||
expat
|
expat
|
||||||
fontconfig
|
fontconfig
|
||||||
freetype
|
freetype
|
||||||
fuse3
|
fuse
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
glib
|
glib
|
||||||
gtk3
|
gtk3
|
||||||
|
|
Reference in a new issue