Skip to content

Commit 3603c71

Browse files
committed
configured vm0 in mera
1 parent 9c62ed2 commit 3603c71

31 files changed

+1320
-1048
lines changed

flake.in.nix

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
let
2-
# combinedManager = import /home/flafy/repos/flafydev/combined-manager;
32
combinedManager = import (builtins.fetchTarball {
4-
url = "https://github.com/flafydev/combined-manager/archive/c9cc0428a15d01417f96015f88fd874233b9cc42.tar.gz";
5-
sha256 = "sha256:188nwnr9vg4wwd98zm0fvwqwyraisaqqkxxlx1qm0x02pnbr904h";
3+
url = "https://github.com/flafydev/combined-manager/archive/18fb4f6fd42bb6cceb9fc095897c1deb43f20c37.tar.gz";
4+
sha256 = "sha256:122m10sw1pm8zn6p4qyz7k4zrylibb4yvnsmyp6w23yy79zmrdhk";
65
});
76
in
87
combinedManager.mkFlake {
@@ -25,16 +24,32 @@ in
2524
mera.system = "x86_64-linux";
2625
mane.system = "x86_64-linux";
2726
bara.system = "aarch64-linux";
27+
# bara.inputOverrides = inputs: {
28+
# nixpkgs = inputs.nixpkgs-temp;
29+
# };
2830
};
2931

30-
outputs = inputs @ {flake-parts, ...}:
32+
outputs = inputs @ {
33+
self,
34+
flake-parts,
35+
...
36+
}:
3137
flake-parts.lib.mkFlake {inherit inputs;} {
3238
systems = [
3339
"x86_64-linux"
3440
"aarch64-linux"
3541
];
36-
perSystem = {pkgs, ...}: {
42+
perSystem = {
43+
pkgs,
44+
...
45+
}: {
3746
formatter = pkgs.alejandra;
47+
packages = {
48+
bara-iso = self.nixosConfigurations.bara.config.mobile.outputs.default;
49+
};
50+
devShells.default = pkgs.mkShell {
51+
packages = [pkgs.nixd pkgs.nil];
52+
};
3853
};
3954
};
4055
}

0 commit comments

Comments
 (0)