Attempt Android support

This commit is contained in:
Bun 2025-04-14 00:20:20 -04:00
parent 97e0076656
commit ad3c035569
5 changed files with 60 additions and 9 deletions

17
hosts/droid/default.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, android, ... }:
{
imports = [
./users
../../modules/system
android.nixosModules.avf
];
networking.hostName = "droid";
avf.defaultUser = config.sysusers.main;
system = {
desktop.enable = true;
stateVersion = "24.11";
};
}