blob: 0e63219e814605e846d57ad8e0b7b20d4c5429d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
description = "";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
mobile-nixos = {
url = "github:mobile-nixos/mobile-nixos";
flake = false;
};
};
outputs = inputs@{ self, ... }: {
nixosConfigurations =
import ./hosts {
inherit inputs;
};
muspell-img =
self.nixosConfigurations.
muspell.config.mobile.
outputs.u-boot.disk-image;
};
}
|