Add back Droid, second go around will surely work

This commit is contained in:
Bun 2025-04-18 04:15:54 -04:00
parent 2750e8e24e
commit 4335e92895
6 changed files with 80 additions and 7 deletions

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

@ -0,0 +1,17 @@
{ lib, avf, ... }:
{
imports = [
./users
../../modules/system
avf.nixosModules.avf
];
networking.hostName = "droid";
system = {
desktop.enable = true;
stateVersion = "25.05";
};
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}