1{ self, inputs, ... }: {
2 imports = [
3 inputs.easy-hosts.flakeModule
4 ];
5
6 easy-hosts = {
7 perClass = class: {
8 modules = [
9 "${self}/modules/base/default.nix"
10 "${self}/modules/${class}/default.nix"
11 ];
12 };
13
14 hosts = {
15 storm = {
16 arch = "x86_64";
17 class = "nixos";
18 };
19 };
20
21 # TBD: order of priority after `storm`: bow, puddle, umbrella
22 };
23}