summaryrefslogtreecommitdiff
path: root/modules/hosts/herra/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hosts/herra/default.nix')
-rw-r--r--modules/hosts/herra/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/hosts/herra/default.nix b/modules/hosts/herra/default.nix
new file mode 100644
index 0000000..4e9c74e
--- /dev/null
+++ b/modules/hosts/herra/default.nix
@@ -0,0 +1,11 @@
+{
+ self,
+ inputs,
+ ...
+}: {
+ flake.nixosConfigurations.herra = inputs.nixpkgs.lib.nixosSystem {
+ modules = [
+ self.nixosModules.herraConfiguration
+ ];
+ };
+}