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

View file

@ -0,0 +1,9 @@
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
}