| 25 Dec 2024 |
oak 🏳️🌈♥️ | Here's a configuration that should just work:
{
device = "instantnoodlep";
flavor = "lineageos";
androidVersion = 13;
variant = "user";
buildDateTime = 1732404420;
signing = {
enable = true;
keyStorePath = "/FULL/PATH/TO/YOUR/KEYS/instantnoodlep";
};
apps = {
chromium.enable = false;
fdroid.enable = true;
updater = {
enable = true;
url = "https://android.purefun.fi/instantnoodlep";
};
};
webview.chromium = {
enable = false;
availableByDefault = false;
};
}
| 13:07:09 |
oak 🏳️🌈♥️ | * Here's a configuration that should just work:
{
device = "instantnoodlep";
flavor = "lineageos";
androidVersion = 13;
variant = "user";
buildDateTime = 1732404420;
signing = {
enable = true;
keyStorePath = "/FULL/PATH/TO/YOUR/KEYS/instantnoodlep";
};
apps = {
chromium.enable = false;
fdroid.enable = true;
updater = {
enable = true;
url = "https://android.YOURDOMAIN.fi/instantnoodlep";
};
};
webview.chromium = {
enable = false;
availableByDefault = false;
};
}
| 13:07:34 |
countoren | do i need signing from the get go? | 13:36:20 |
countoren | * this my current config on flake:
{
description = "Robotnix configuration for OnePlus 8 Pro";
inputs.robotnix.url = "github:danielfullmer/robotnix";
outputs = { self, robotnix }: {
robotnixConfigurations."oneplus8pro" = robotnix.lib.robotnixSystem ({ config, pkgs, ... }: {
# Required options
device = "instantnoodlep"; # Codename for OnePlus 8 Pro
flavor = "lineageos"; # Change this to 'lineageos' if you want LineageOS, otherwise keep 'grapheneos' if supported
androidVersion = 13;
webview.chromium.enable = false;
webview.prebuilt.enable = false;
apps.chromium.enable = false;
});
# Default package for building the image
defaultPackage.x86_64-linux = self.robotnixConfigurations."oneplus8pro".img;
};
}
do i need signing and updater from the get go?
| 13:38:50 |
atemu12 | No, that ought to work | 14:09:53 |
oak 🏳️🌈♥️ | The buildDateTime is missing | 17:00:57 |
atemu12 | That shouldn't cause an issue though | 17:01:17 |
atemu12 | It should be set | 17:01:22 |
atemu12 | (By the lineageos flavour) | 17:01:35 |
atemu12 | If setting it works, that's a bug | 17:01:49 |
atemu12 | Please try it | 17:01:51 |
oak 🏳️🌈♥️ | Actually, this is probably the issue: inputs.robotnix.url = "github:danielfullmer/robotnix"; | 17:02:15 |
oak 🏳️🌈♥️ | It should be github:nix-community/robotnix now I think | 17:02:33 |
atemu12 | That should just redirect to nix-community | 17:02:35 |
atemu12 | Well I say should but my browser history always spits out the old location, so I always get the redirect when I access the GH repo | 17:03:29 |
oak 🏳️🌈♥️ | Okay it seems it just redirects | 17:09:04 |
oak 🏳️🌈♥️ | I tried to copy-paste this into my local flake.nix and I didn't hit the soong error, it started to build just fine. The only thing I changed was the input, I didn't add buildDateTime | 17:19:07 |
atemu12 | Changed input from what to what? | 17:19:37 |
oak 🏳️🌈♥️ | From danielfullmer/robotnix to nix-community/robotnix | 17:19:53 |
oak 🏳️🌈♥️ | Although the hash didn't change so I'm not sure is this an issue | 17:20:08 |
atemu12 | It couldn't be really | 17:20:30 |
atemu12 | They said they were using https://github.com/nix-community/robotnix/commit/ddefce63fe8ec896c24325e1680959a893a581ff | 17:20:36 |
atemu12 | If you don't change anything do you repro then? | 17:20:51 |
oak 🏳️🌈♥️ | Let's try | 17:21:47 |
oak 🏳️🌈♥️ | It just starts to do the exactly same build | 17:22:40 |
oak 🏳️🌈♥️ | I'm wondering if countoren 's system runs out of memory or something during execution of that step? | 17:24:15 |
atemu12 | Should be a different exit code then I think | 17:24:38 |
countoren | I could try change to github:nix-community/robotnix | 17:38:45 |
countoren | to see it might be a thing | 17:39:23 |
countoren | * it might be a thing | 17:39:33 |