test nixondroid

This commit is contained in:
TheWanderingCrow 2025-07-20 09:41:17 -04:00
parent 89d72b3941
commit 9bcf7688b1
4 changed files with 221 additions and 1 deletions

View file

@ -0,0 +1,27 @@
{
config,
lib,
pkgs,
...
}: {
environment.packages = with pkgs; [
inputs.nvix.packages.${pkgs.system}.default
git
ssh
];
environment.etcBackupExtension = ".bak";
system.stateVersion = "24.05";
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
android-integration = {
termux-open.enable = true;
termux-open-url.enable = true;
termux-reload-settings.enable = true;
termux-setup-storage.enable = true;
};
}