Compare commits

...

No commits in common. "33365532fbd4c5be1cd65e6d29636bcd84b1dc71" and "3fa96fad06bf148bc9b727d6f65d294cb9a26adb" have entirely different histories.

1 changed files with 4 additions and 3 deletions

View File

@ -10,8 +10,8 @@
home-manager.url = "github:nix-community/home-manager/release-22.05";
};
outputs = { self, nixpkgs, mobile-nixos, home-manager }: {
pinephone-img = (nixpkgs.lib.nixosSystem {
outputs = { self, nixpkgs, mobile-nixos, home-manager }: rec {
nixosConfigurations.pinephone = (nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = { inherit home-manager; };
modules = [
@ -20,6 +20,7 @@
})
./modules/default.nix
];
}).config.mobile.outputs.u-boot.disk-image;
});
pinephone-img = nixosConfigurations.pinephone.config.mobile.outputs.u-boot.disk-image;
};
}