CrOS/hosts/droid/Siren/default.nix
TheWanderingCrow 9bcf7688b1 test nixondroid
2025-07-20 09:41:17 -04:00

27 lines
483 B
Nix

{
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;
};
}