CrOS/hosts/droid/Siren/default.nix
TheWanderingCrow 1f52005b2b add inputs
2025-07-20 09:45:40 -04:00

28 lines
493 B
Nix

{
config,
lib,
inputs,
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;
};
}