CrOS/hosts/droid/Siren/default.nix
2025-07-28 16:16:37 -04:00

31 lines
554 B
Nix

{
config,
lib,
inputs,
pkgs,
...
}: {
environment.packages = builtins.attrValues {
inherit (inputs.nvix.packages.${pkgs.system}) default;
inherit
(pkgs)
git
openssh
;
};
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;
};
}