nix-on-droid

This commit is contained in:
2025-01-26 17:09:01 +00:00
parent 679ebeacba
commit bf026690ae
2 changed files with 57 additions and 0 deletions

View File

@@ -21,11 +21,16 @@
ghostty = {
url = "github:ghostty-org/ghostty";
};
nix-on-droid = {
url = "github:nix-community/nix-on-droid/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ {
nixpkgs,
nix-darwin,
nix-on-droid,
...
}: {
nixosConfigurations = {
@@ -60,5 +65,10 @@
];
};
};
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
pkgs = import nixpkgs { system = "aarch64-linux"; };
modules = [ ./hosts/android/configuration.nix ];
};
};
}