add nixosModules.default alias for single-import deploy

This commit is contained in:
damocles 2026-05-20 21:52:01 +02:00 committed by Mara
parent 6a643f2fd2
commit 08913484cc
2 changed files with 9 additions and 1 deletions

View file

@ -99,6 +99,14 @@
hyperhiveFlake = "${self}";
};
hive-forge = ./nix/modules/hive-forge.nix;
# Convenience alias: one import covers the full hyperhive host
# stack (hive-c0re + hive-forge, since hive-c0re already pulls
# in hive-forge). Intended usage:
#
# imports = [ hyperhive.nixosModules.default ];
# services.hive-c0re.enable = true;
#
default = self.nixosModules.hive-c0re;
};
nixosConfigurations =