Trying to build new android host with CI
This commit is contained in:
parent
e71fee8852
commit
b3071a310f
4 changed files with 201 additions and 9 deletions
19
flake.nix
19
flake.nix
|
@ -13,13 +13,26 @@
|
|||
agenix.url = github:ryantm/agenix;
|
||||
doomEmacs.url = github:nix-community/nix-doom-emacs;
|
||||
comma.url = github:nix-community/comma;
|
||||
robotnix.url = github:danielfullmer/robotnix;
|
||||
};
|
||||
|
||||
outputs = {self, ...} @ inputs: let
|
||||
utils = (import ./utils) inputs;
|
||||
inherit (utils) lib mkConfigurations mkVmApps checkFormatting formatter formatApp mkDevShell;
|
||||
utils = import ./utils inputs;
|
||||
inherit
|
||||
(utils)
|
||||
androidImages
|
||||
checkFormatting
|
||||
formatApp
|
||||
formatter
|
||||
lib
|
||||
mkDevShell
|
||||
mkVmApps
|
||||
nixosConfigurations
|
||||
;
|
||||
in {
|
||||
nixosConfigurations = mkConfigurations;
|
||||
inherit nixosConfigurations;
|
||||
|
||||
packages = androidImages;
|
||||
|
||||
apps = lib.recursiveUpdate (mkVmApps self.nixosConfigurations) formatApp;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue